#!/bin/bash
#
# Rosetta Radar  (v1.24)
# Copyright (c) 2026 Ast-Ware Arts (Ast-WareArts@protonmail.com)
# Free to use and share.
#
# Lists every application on this Mac by CPU architecture so you can see
# which apps are Intel-only (and will stop working once Apple removes
# Rosetta 2 — macOS 27 is the last release with general-purpose Rosetta 2;
# macOS 28 keeps only a limited subset for certain older games).
#
# Architecture is determined by inspecting each app's actual program file
# with the built-in `file` tool (x86_64 = Intel, arm64 = Apple Silicon,
# both = Universal) — the same basis as Finder's "Application (Intel)".
#
# Produces an HTML report (opens automatically) and a CSV, both on the Desktop,
# and shows a live progress window while it scans.
#
# ---------------------------------------------------------------------------
#  You may freely give this away. To rebrand it, change the two lines below.
# ---------------------------------------------------------------------------
BRAND="Ast-Ware Arts"
CONTACT="Ast-WareArts@protonmail.com"
# ---------------------------------------------------------------------------

set -u
APPNAME="Rosetta Radar"
VERSION="1.24"

fail() {
  /usr/bin/osascript -e "display dialog \"$1\" buttons {\"OK\"} default button \"OK\" with title \"$APPNAME\" with icon stop" >/dev/null 2>&1
  echo "ERROR: $1" >&2
  exit 1
}

OUTDIR="$HOME/Desktop"; [ -d "$OUTDIR" ] || OUTDIR="$HOME"
# Human-readable place name for messages (falls back to the real path when
# there is no Desktop folder, so we never claim "Desktop" incorrectly).
if [ "$OUTDIR" = "$HOME/Desktop" ]; then OUTLOC="your Desktop"; else OUTLOC="$OUTDIR"; fi
STAMP="$(date '+%Y-%m-%d_%H%M')"            # shown in the report ("Generated ...")
FSTAMP="$(date '+%Y-%m-%d_%H%M%S')-$$"      # filenames: seconds + PID so back-to-back launches never collide
HTML="$OUTDIR/Rosetta-Radar-Report-$FSTAMP.html"
CSV="$OUTDIR/Rosetta-Radar-Report-$FSTAMP.csv"
PROG="$OUTDIR/.RosettaRadar-progress.html"

MACOS_NAME="$(sw_vers -productName 2>/dev/null)"
MACOS_VER="$(sw_vers -productVersion 2>/dev/null)"
CHIP="$(sysctl -n machdep.cpu.brand_string 2>/dev/null)"
MODEL="$(sysctl -n hw.model 2>/dev/null)"
HOSTN="$(scutil --get ComputerName 2>/dev/null || hostname 2>/dev/null)"

WORK="$(mktemp -d -t intelapps 2>/dev/null || echo "/tmp/intelapps.$$")"; mkdir -p "$WORK"
TMPJSON="$WORK/apps.json"; APPS_TSV="$WORK/apps.tsv"; ARCH_TSV="$WORK/arch.tsv"; DEV_TSV="$WORK/dev.tsv"; LASTOPEN_TSV="$WORK/lastopen.tsv"
FINAL_TSV="$WORK/final.tsv"; JS1="$WORK/emit.js"; JS2="$WORK/report.js"; DESCAWK="$WORK/desc.awk"; APPDB_TSV="$WORK/appdb.tsv"
trap 'rm -rf "$WORK"' EXIT

# --- Progress window (a tiny self-refreshing HTML page) --------------------
esc_html() {  # minimal HTML escaping for text placed into the progress page
  printf '%s' "$1" | /usr/bin/sed 's/&/\&amp;/g; s/</\&lt;/g; s/>/\&gt;/g'
}
write_prog() {   # $1 = percent (integer, or -1 for indeterminate)  $2 = phase  $3 = detail
  local pct="$1" phase detail pcttext fillw
  phase="$(esc_html "$2")"; detail="$(esc_html "$3")"   # $3 can contain an app name — escape it
  if [ "$pct" -lt 0 ] 2>/dev/null; then pcttext="Working&#8230;"; fillw="100"; else pcttext="${pct}%"; fillw="$pct"; fi
  cat > "$PROG" <<HTML
<!doctype html><html lang="en"><head><meta charset="utf-8"><meta http-equiv="refresh" content="1">
<title>Scanning applications</title><style>
:root{--bg:#f5f6f8;--card:#fff;--ink:#1d1f24;--muted:#6b7280;--line:#e5e7eb;--accent:#2563eb;--track:#e9edf3}
@media (prefers-color-scheme:dark){:root{--bg:#16181d;--card:#1f232b;--ink:#e7e9ee;--muted:#9aa3b2;--line:#333a45;--accent:#60a5fa;--track:#2a2f38}}
html,body{height:100%}body{margin:0;background:var(--bg);color:var(--ink);font:15px/1.5 -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;display:flex;align-items:center;justify-content:center}
.box{background:var(--card);border:1px solid var(--line);border-radius:16px;padding:30px 34px;max-width:460px;width:88%;text-align:center;box-shadow:0 10px 40px rgba(0,0,0,.08)}
h1{margin:2px 0 2px;font-size:20px}.phase{color:var(--ink);font-weight:600;margin:14px 0 10px;font-size:15px}
.bar{height:12px;background:var(--track);border-radius:8px;overflow:hidden;margin:4px 0 8px}
.fill{height:100%;background:var(--accent);width:${fillw}%;border-radius:8px;transition:width .3s}
.pct{font-size:26px;font-weight:700;margin:4px 0 2px}.detail{color:var(--muted);font-size:13px;min-height:18px}
.logo{font-size:30px}
</style></head><body><div class="box">
<div class="logo">&#128270;</div><h1>${APPNAME}</h1>
<div class="phase">${phase}</div>
<div class="bar"><div class="fill"></div></div>
<div class="pct">${pcttext}</div>
<div class="detail">${detail}</div>
</div></body></html>
HTML
}
finish_prog() {  # static "done" page — no meta-refresh to file:// (some browsers block that)
  cat > "$PROG" <<HTML
<!doctype html><html lang="en"><head><meta charset="utf-8"><title>Done</title><style>
:root{--bg:#f5f6f8;--card:#fff;--ink:#1d1f24;--muted:#6b7280;--line:#e5e7eb;--arm:#059669}
@media (prefers-color-scheme:dark){:root{--bg:#16181d;--card:#1f232b;--ink:#e7e9ee;--muted:#9aa3b2;--line:#333a45;--arm:#34d399}}
html,body{height:100%}body{margin:0;background:var(--bg);color:var(--ink);font:15px/1.5 -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;display:flex;align-items:center;justify-content:center}
.box{background:var(--card);border:1px solid var(--line);border-radius:16px;padding:30px 34px;max-width:460px;width:88%;text-align:center;box-shadow:0 10px 40px rgba(0,0,0,.08)}
h1{margin:6px 0 4px;font-size:20px}.ok{font-size:34px;color:var(--arm)}.detail{color:var(--muted);font-size:13px;margin-top:8px}
</style></head><body><div class="box"><div class="ok">&#10003;</div><h1>${APPNAME}</h1>
<div class="detail">Scan complete. Your report has opened in a new window.<br>You can close this tab.</div>
</div></body></html>
HTML
}

# --- Ask about external volumes (with the reason why) ----------------------
EXTBTN="$(/usr/bin/osascript -e 'button returned of (display dialog "Also scan external and mounted volumes?

Including them finds Intel apps on external or network drives — but the scan is slower, and those apps will not run when the drive is disconnected anyway. Most people can skip this and scan just the internal drive." buttons {"Skip", "Include external"} default button "Skip" with title "'"$APPNAME"'")' 2>/dev/null)"
SCAN_EXT=0; [ "$EXTBTN" = "Include external" ] && SCAN_EXT=1

# --- Ask about online description lookup (opt-in; off by default) -----------
ONLINEBTN="$(/usr/bin/osascript -e 'button returned of (display dialog "Look up descriptions and website links online for apps not already recognized?

Rosetta Radar works fully offline by default. If you allow this, it looks up ONLY the names of apps it does not already recognize — using Apple’s App Store search and Wikipedia — to fill in what each one does and, where possible, a website link so you can check for an Apple Silicon or Universal update. Nothing else ever leaves your Mac, and results are cached for next time. This can take a few minutes.

Tip: run it once offline first. If the report has many apps with no description or link, run Rosetta Radar again and choose “Look up online.”" buttons {"Stay offline", "Look up online"} default button "Stay offline" with title "'"$APPNAME"'")' 2>/dev/null)"
ONLINE=0; [ "$ONLINEBTN" = "Look up online" ] && ONLINE=1

# --- Ask which report files to create (HTML, CSV, or both) ------------------
# Some people only ever want the readable report; others only want the
# spreadsheet. Let them choose so no unwanted file is left on the Desktop.
FMTBTN="$(/usr/bin/osascript -e 'button returned of (display dialog "Which report files would you like Rosetta Radar to create?

•  Both — a readable HTML report and a CSV spreadsheet (recommended)
•  HTML only — just the readable report that opens in your browser
•  CSV only — just the spreadsheet, to open in Numbers or Excel

Whatever you choose is saved to your Desktop." buttons {"CSV only", "HTML only", "Both"} default button "Both" with title "'"$APPNAME"'")' 2>/dev/null)"
OUT_HTML=1; OUT_CSV=1
case "$FMTBTN" in
  "HTML only") OUT_CSV=0 ;;
  "CSV only")  OUT_HTML=0 ;;
esac

# Show the progress window right away so launch feels responsive.
write_prog -1 "Starting..." "Preparing to scan your applications."
/usr/bin/open "$PROG" >/dev/null 2>&1

# --- Application inventory --------------------------------------------------
write_prog -1 "Reading the application list" "macOS is compiling the list of installed apps. This can take up to a minute the first time."
if ! /usr/sbin/system_profiler SPApplicationsDataType -json > "$TMPJSON" 2>/dev/null; then
  fail "Could not read the application list from system_profiler. Please try again."
fi
[ -s "$TMPJSON" ] || fail "The application list came back empty. Please try once more."

cat > "$JS1" <<'JXA1'
function run(argv){
  ObjC.import('Foundation');
  var s=$.NSString.stringWithContentsOfFileEncodingError($(argv[0]),$.NSUTF8StringEncoding,null);
  if(!s) return "ERR";
  var apps; try{ apps=(JSON.parse(ObjC.unwrap(s)).SPApplicationsDataType)||[]; }catch(e){ return "ERR"; }
  function clean(v){ if(v==null) return ""; return String(v).replace(/[\t\r\n]+/g," "); }
  var out="";
  for(var i=0;i<apps.length;i++){ var a=apps[i]||{};
    out += [ clean(a._name||"(unnamed)"), clean(a.version||""), clean(a.obtained_from||""),
             clean(a.lastModified? String(a.lastModified).replace(/[ T].*$/,""):""),
             clean(a.arch_kind||""), clean(a.path||"") ].join("\t") + "\n"; }
  $(out).writeToFileAtomicallyEncodingError($(argv[1]),true,$.NSUTF8StringEncoding,null);
  return String(apps.length);
}
JXA1
COUNT="$(/usr/bin/osascript -l JavaScript "$JS1" "$TMPJSON" "$APPS_TSV" 2>/dev/null)"
case "$COUNT" in ERR|"") fail "Could not read the application list.";; esac
[ -s "$APPS_TSV" ] || fail "No applications were found to scan."

# --- Broaden coverage: Spotlight sweep (+ external volumes if chosen) -------
# system_profiler misses some apps (nested helpers, ~/Applications, odd
# locations, external drives). A Spotlight query finds every app bundle the
# Mac has indexed, giving a complete picture. We merge those in, de-duped.
# Build one APPS_TSV row for a bundle path that has ALREADY been de-duplicated
# and volume-filtered by dedup_new (below).
append_row() {   # $1 = app bundle path
  local ap="$1" nm ver mod
  [ -n "$ap" ] || return 0
  # Only add real, existing app bundles. This also safely rejects the broken
  # fragments that would result if a path ever contained a newline (the
  # line-oriented sweep would split it into pieces that aren't valid dirs).
  [ -d "$ap" ] || return 0
  # A tab in the path would shift this row's TSV columns — skip such a path.
  case "$ap" in *"$(printf '\t')"*) return 0;; esac
  nm="$(/usr/bin/basename "$ap")"; nm="${nm%.app}"
  ver="$(/usr/bin/defaults read "$ap/Contents/Info" CFBundleShortVersionString 2>/dev/null)"
  mod="$(/usr/bin/stat -f '%Sm' -t '%Y-%m-%d' "$ap" 2>/dev/null)"
  nm="$(printf '%s' "$nm" | /usr/bin/tr '\t\r\n' '   ')"
  ver="$(printf '%s' "$ver" | /usr/bin/tr '\t\r\n' '   ')"
  printf '%s\t%s\t%s\t%s\t%s\t%s\n' "$nm" "$ver" "" "$mod" "" "$ap" >> "$APPS_TSV"
}

# From a candidate path list, emit only the paths that are NEW (not already in
# have.txt and not repeated within the batch), applying the external-volume
# rule. One awk set pass — O(N) — instead of a grep per candidate, which was
# O(N^2) and became the dominant scan cost as the app count grew. have.txt is
# then extended so a later batch de-dupes against these too.
dedup_new() {   # $1 = candidate list file   $2 = output (new-unique) file
  /usr/bin/awk -v ext="$SCAN_EXT" '
    NR==FNR { seen[$0]=1; next }
    { if ($0=="") next;
      if (ext!="1" && $0 ~ /^\/Volumes\//) next;
      if (!($0 in seen)) { seen[$0]=1; print } }
  ' "$WORK/have.txt" "$1" > "$2"
  cat "$2" >> "$WORK/have.txt"
}

/usr/bin/awk -F'\t' '{print $6}' "$APPS_TSV" > "$WORK/have.txt"

write_prog -1 "Finding all applications" "Using Spotlight to locate every app bundle on this Mac..."
/usr/bin/mdfind "kMDItemContentTypeTree == 'com.apple.application-bundle'c" 2>/dev/null > "$WORK/md.txt" || true
dedup_new "$WORK/md.txt" "$WORK/md_new.txt"
while IFS= read -r ap; do append_row "$ap"; done < "$WORK/md_new.txt"

if [ "$SCAN_EXT" = "1" ]; then
  write_prog -1 "Scanning external volumes" "Looking for apps on mounted external drives. This can be slow on large or network drives."
  /usr/bin/find /Volumes -maxdepth 6 -iname '*.app' -type d -prune -print 2>/dev/null > "$WORK/ext.txt"
  dedup_new "$WORK/ext.txt" "$WORK/ext_new.txt"
  while IFS= read -r ap; do append_row "$ap"; done < "$WORK/ext_new.txt"
fi

# --- Resolve each app's binary and inspect it (with live progress) ----------
resolve_bin() {
  local apath="$1" macos exe f
  macos="$apath/Contents/MacOS"; [ -d "$macos" ] || return 0
  local files=(); for f in "$macos"/*; do [ -f "$f" ] && files+=("$f"); done
  [ "${#files[@]}" -gt 0 ] || return 0
  if [ "${#files[@]}" -eq 1 ]; then printf '%s' "${files[0]}"; return 0; fi
  # Prefer the declared primary executable (authoritative).
  exe="$(/usr/bin/defaults read "$apath/Contents/Info" CFBundleExecutable 2>/dev/null)"
  if [ -n "$exe" ] && [ -f "$macos/$exe" ]; then printf '%s' "$macos/$exe"; return 0; fi
  # A bundle with several executables and no usable CFBundleExecutable is
  # ambiguous — the first Mach-O could be a helper, not the app's primary
  # program. Rather than guess (and possibly report a helper's architecture),
  # return nothing so the app is classified "Other" (primary undetermined).
  return 0
}

N="$(/usr/bin/awk 'END{print NR}' "$APPS_TSV")"; [ "${N:-0}" -gt 0 ] || N=1
/usr/bin/awk -F'\t' '{print NR"\t"$6}' "$APPS_TSV" > "$WORK/paths.tsv"
STEP=$(( N / 40 )); [ "$STEP" -lt 1 ] && STEP=1
: > "$ARCH_TSV"; : > "$DEV_TSV"; : > "$LASTOPEN_TSV"

# Extract the signing developer's name from an app's code signature, so the
# Source column can show WHO made it instead of a generic "Identified
# developer". codesign prints an Authority line like:
#   Authority=Developer ID Application: Company Name (TEAMID)
# We take the company name from it. Unsigned apps yield nothing (kept empty).
dev_name() {  # $1 = app bundle path
  /usr/bin/codesign -dvv "$1" 2>&1 | /usr/bin/awk '
    /Authority=Developer ID Application:/{
      a=$0; sub(/^.*Authority=Developer ID Application: /,"",a);
      sub(/[[:space:]]*\([0-9A-Za-z]+\)[[:space:]]*$/,"",a);
      gsub(/[\t\r\n]/," ",a); print a; exit }'
}

i=0
while IFS=$'\t' read -r lineno apath; do
  i=$((i+1))
  if [ $(( i % STEP )) -eq 0 ] || [ "$i" -eq "$N" ]; then
    write_prog "$(( i*100/N ))" "Inspecting applications" "Checking application $i of $N..."
  fi
  [ -n "$apath" ] || continue
  # Last-opened date from Spotlight metadata (kMDItemLastUsedDate). Recorded
  # for every app, even ones with no standard binary. Blank if never used or
  # not indexed. mdls -raw prints e.g. "2026-09-18 14:23:01 +0000"; keep the date.
  lo="$(/usr/bin/mdls -name kMDItemLastUsedDate -raw "$apath" 2>/dev/null)"
  case "$lo" in ""|"(null)"|"(nil)") lo="";; *) lo="${lo%% *}";; esac
  [ -n "$lo" ] && printf '%s\t%s\n' "$lineno" "$lo" >> "$LASTOPEN_TSV"
  # Signing developer (works on the bundle regardless of the binary).
  dev="$(dev_name "$apath")"
  [ -n "$dev" ] && printf '%s\t%s\n' "$lineno" "$dev" >> "$DEV_TSV"
  # Architecture from the primary Mach-O executable.
  bin="$(resolve_bin "$apath")"; [ -n "$bin" ] || continue
  d="$(/usr/bin/file -b "$bin" 2>/dev/null)"
  x64=0; i32=0; a=0
  case "$d" in *x86_64*) x64=1;; esac
  case "$d" in *i386*) i32=1;; esac
  case "$d" in *arm64*) a=1;; esac   # also matches arm64e
  # Classification. Rosetta 2 translates only 64-bit x86_64. A 32-bit-only
  # (i386) app is a separate, legacy case: modern macOS cannot run it at all,
  # with or without Rosetta, so it gets its own category.
  if [ "$x64" = 1 ] && [ "$a" = 1 ]; then arch="Universal"
  elif [ "$a" = 1 ]; then arch="Apple Silicon"
  elif [ "$x64" = 1 ]; then arch="Intel"
  elif [ "$i32" = 1 ]; then arch="32-bit Intel"
  else arch="Other"; fi
  printf '%s\t%s\n' "$lineno" "$arch" >> "$ARCH_TSV"
done < "$WORK/paths.tsv"

# --- Descriptions + combined table -----------------------------------------
write_prog 96 "Building the report" "Adding descriptions and writing the report and CSV..."

# --- App description library (from the Homebrew Cask project, BSD-2-Clause) --
# ~6,000 apps: name -> description + website link. Loaded into the dictionary
# below; the curated entries defined in the awk BEGIN block take priority and
# this only fills the gaps. This is data, not code.
cat > "$APPDB_TSV" <<'APPDB'
(Deep) HIARCS Chess Explorer	Chess database, analysis and game playing program	https://www.hiarcs.com/mac-chess-explorer.html
(Un)colored	Rich text (HTML & Markdown) editor that saves documents with themes	https://n457.github.io/Uncolored/
.NET Reactor	.NET code protection and obfuscation tool	https://www.eziriz.com/dotnet_reactor.htm
.Net Runtime	Developer platform	https://www.microsoft.com/net/core#macos
.NET SDK	Developer platform	https://www.microsoft.com/net/core#macos
0 A.D.	Real-time strategy game	https://play0ad.com/
010 Editor	Text editor	https://www.sweetscape.com/
115Browser	Web browser	https://pc.115.com/browser.html#mac
115浏览器	Web browser	https://pc.115.com/browser.html#mac
1Password	Password manager that keeps all passwords secure behind one password	https://1password.com/
1Password 7	Password manager that keeps all passwords secure behind one password	https://1password.com/
1Password CLI	Command-line interface for 1Password	https://developer.1password.com/docs/cli
1Password Nightly	Password manager	https://1password.com/
3D Slicer	Medical image processing and visualization system	https://www.slicer.org/
3DGence Slicer	Prepare files for 3D printing based on CAD models for 3DGence printers	https://3dgence.com/
3DGence Slicer 4.0	Prepare files for 3D printing based on CAD models for 3DGence printers	https://3dgence.com/
4K Image Compressor	Image compressor	https://www.4kdownload.com/products/imagecompressor
4K Slideshow Maker	Slideshow maker	https://www.4kdownload.com/products/product-slideshowmaker
4K Stogram	Download Instagram photos, accounts, hashtags and locations	https://www.4kdownload.com/products/product-stogram
4K Tokkit	Download TikTok videos and accounts	https://www.4kdownload.com/products/tokkit/17
4K Video Downloader	Free video downloader	https://www.4kdownload.com/products/product-videodownloader
4K Video Downloader Plus	Free video downloader	https://www.4kdownload.com/products/videodownloader
4K Video Downloader+	Free video downloader	https://www.4kdownload.com/products/videodownloader
4K Video to MP3	Convert any video to MP3	https://www.4kdownload.com/products/product-videotomp3
4K YouTube to MP3	Turn YouTube links into MP3 files	https://www.4kdownload.com/products/youtubetomp3/1
4Peaks	Visualise and edit DNA sequence trace files	https://nucleobytes.com/4peaks/index.html
5ire	AI assistant and MCP client	https://5ire.app/
5KPlayer	Play 4K/1080p/360-degree video, MP3/AAC/APE/FLAC music without quality loss	https://www.5kplayer.com/
7777	Remote AWS database on local port 7777	https://port7777.com/
86Box	Emulator of x86-based machines based on PCem	https://86box.net/
8BitDo Firmware Updater	Firmware updater for 8BitDo controllers	https://support.8bitdo.com/firmware-updater.html
8BitDo Ultimate Software	Control every piece of your controller	https://support.8bitdo.com/ultimate-software.html
8BitDo Ultimate Software V2	Control every piece of your controller	https://app.8bitdo.com/Ultimate-Software-V2/
8x8 Work	Communications application with voice, video, chat, and web conferencing	https://docs.8x8.com/8x8WebHelp/8x8-work-for-desktop/Content/workd/about-the-app.htm
8x8_work	Communications application with voice, video, chat, and web conferencing	https://docs.8x8.com/8x8WebHelp/8x8-work-for-desktop/Content/workd/about-the-app.htm
A Better Finder Attributes	File and photo tweaking tool	https://www.publicspace.net/ABetterFinderAttributes/
A Better Finder Attributes 7	File and photo tweaking tool	https://www.publicspace.net/ABetterFinderAttributes/
A Better Finder Rename	Renamer for files, music and photos	https://www.publicspace.net/ABetterFinderRename/
A Better Finder Rename 12	Renamer for files, music and photos	https://www.publicspace.net/ABetterFinderRename/
ABBYY FineReader PDF	Scan, OCR, and convert documents to searchable PDFs and other formats	https://pdf.abbyy.com/finereader-pdf-for-mac/
AbleSet	Ableton setlist manager	https://ableset.app/
Ableton Live 10 Suite	Sound and music editor	https://www.ableton.com/en/live/
Ableton Live 11 Intro	Sound and music editor	https://www.ableton.com/en/live/
Ableton Live 11 Lite	Sound and music editor	https://www.ableton.com/en/products/live-lite/
Ableton Live 11 Standard	Sound and music editor	https://www.ableton.com/en/live/
Ableton Live 11 Suite	Sound and music editor	https://www.ableton.com/en/live/
Ableton Live 12 Intro	Sound and music editor	https://www.ableton.com/en/live/
Ableton Live 12 Lite	Sound and music editor	https://www.ableton.com/en/products/live-lite/
Ableton Live 12 Standard	Sound and music editor	https://www.ableton.com/en/live/
Ableton Live 12 Suite	Sound and music editor	https://www.ableton.com/en/live/
Ableton Live Intro	Sound and music editor	https://www.ableton.com/en/live/
Ableton Live Lite	Sound and music editor	https://www.ableton.com/en/products/live-lite/
Ableton Live Standard	Sound and music editor	https://www.ableton.com/en/live/
Ableton Live Suite	Sound and music editor	https://www.ableton.com/en/live/
Ableton Max for Live	Flexible space to create your own interactive software	https://cycling74.com/products/max
Abstract	Collaborative design tool with support for Sketch files	https://www.goabstract.com/
AccessMenuBarApps	Instant access for menubar apps	https://www.ortisoft.de/accessmenubarapps/
AccessMenuBarApps2.6.1/AccessMenuBarApps	Instant access for menubar apps	https://www.ortisoft.de/accessmenubarapps/
Accord	Discord client written in Swift for modern Macs	https://github.com/evelyneee/accord
accord	Discord client written in Swift for modern Macs	https://github.com/evelyneee/accord
Accordance	Bible study software	https://www.accordancebible.com/
Accordance Bible Software	Bible study software	https://www.accordancebible.com/
Ace Link	Menu bar app for playing Ace Stream video streams in an external media player	https://github.com/blaise-io/acelink
ACE Studio	AI Singing Voice Generator	https://acestudio.ai/versions
Acorn	Image editor focused on simplicity	https://flyingmeat.com/acorn/
acreom	Personal knowledge base for developers	https://acreom.com/
Acronis True Image	Full image backup and cloning software	https://www.acronis.com/products/true-image/
Acronis True Image Cleanup Utility	Uninstaller for Acronis True Image	https://care.acronis.com/s/article/48668-Acronis-Cyber-Protect-Home-Office-Acronis-True-Image-Cleanup-Utility
Active Trader Pro	Trading platform	https://www.fidelity.com/trading/advanced-trading-tools/active-trader-pro/overview
ActiveDock	Customizable dock, application launcher, dock replacement	https://www.noteifyapp.com/activedock/
ActiveDock 2	Customizable dock, application launcher, dock replacement	https://www.noteifyapp.com/activedock/
ActivityWatch	Time tracker	https://activitywatch.net/
Actual	Privacy-focused app for managing your finances	https://actualbudget.org/
Actual ODBC Driver Pack	Connect to enterprise databases using common desktop applications	https://www.actualtech.com/products.php
Adapter	Converts video, audio and images	https://macroplant.com/adapter
AdGuard	Stand alone ad blocker	https://adguard.com/
Adguard	Stand alone ad blocker	https://adguard.com/
AdGuard VPN	VPN for privacy and security	https://adguard-vpn.com/
Adium	Instant messaging application	https://www.adium.im/
AdLock	Proxy-based ad blocking tool	https://adlock.com/
Adobe Acrobat Pro DC	View, create, manipulate, print and manage files in Portable Document Format	https://www.adobe.com/acrobat/pdf-reader.html
Adobe Acrobat Reader	View, print, and comment on PDF documents	https://www.adobe.com/acrobat/pdf-reader.html
Adobe AIR	Framework used in the development of applications and games	https://airsdk.harman.com/
Adobe Connect	Virtual meeting client	https://www.adobe.com/products/adobeconnect.html
Adobe Creative Cloud	Collection of apps and services for photography, design, video, web, and UX	https://www.adobe.com/creativecloud.html
Adobe Creative Cloud Cleaner Tool	Utility to clean up corrupted installations of Adobe software	https://helpx.adobe.com/creative-cloud/kb/cc-cleaner-tool-installation-problems.html
Adobe Digital Editions	E-book reader	https://www.adobe.com/solutions/ebook/digital-editions.html
Adobe DNG Converter	DNG file converter	https://helpx.adobe.com/camera-raw/using/adobe-dng-converter.html
Adobe Photoshop Patterns Quicklook Plugin	Quick Look plugin for Adobe Photoshop pattern files	https://github.com/pixelrowdies/quicklook-pat
Adrafinil	Keep your computer awake while AI coding agents are working	https://kagerou.glass/adrafinil/
aDrive	Intelligent cloud storage platform	https://www.aliyundrive.com/
Advanced Renamer	Batch file renaming utility	https://www.advancedrenamer.com/
Advanced REST Client	API testing tool	https://github.com/advanced-rest-client/arc-electron
AdvancedRestClient	API testing tool	https://github.com/advanced-rest-client/arc-electron
AdvantageScope	FRC log analysis tool	https://docs.advantagescope.org/
Adze	Edit GPX documents	https://getadze.com/
Aegisub	Create and modify subtitles	https://github.com/TypesettingTools/Aegisub/
Aerial	Apple TV Aerial screensaver	https://aerialscreensaver.github.io/
AFFiNE	Note editor and whiteboard	https://affine.pro/
Affinity	Image editing and design software	https://www.affinity.studio/
Affinity Designer	Professional graphic design software	https://affinity.serif.com/en-us/designer/
Affinity Designer 2	Professional graphic design software	https://affinity.serif.com/en-us/designer/
Affinity Photo	Professional image editing software	https://affinity.serif.com/en-us/photo/
Affinity Photo 2	Professional image editing software	https://affinity.serif.com/en-us/photo/
Affinity Publisher	Professional desktop publishing software	https://affinity.serif.com/en-us/publisher/
Affinity Publisher 2	Professional desktop publishing software	https://affinity.serif.com/en-us/publisher/
After Dark Classic Set	Classic After Dark screensaver set	https://en.infinisys.co.jp/product/afterdarkclassicset/index.shtml
Afterglow	Classic After Dark screen savers emulator	https://morphing.cloud/afterglow/
Agent TARS	Multimodal AI agent for GUI interaction	https://github.com/bytedance/UI-TARS-desktop
Agent!	Autonomous agent	https://github.com/AgentiLoop/Agent
AgentIDE	IDE for agent-based development	https://github.com/MikeMcQuaid/AgentIDE
AgentiLoop Agent!	Autonomous agent	https://github.com/AgentiLoop/Agent
Agentkube	AI-powered Kubernetes IDE	https://agentkube.com/
AgentsMesh	AI agent workforce platform	https://agentsmesh.ai/
AgentsView	Browse, search and analyse your past AI coding sessions	https://www.agentsview.io/
AGI	Android GPU Inspector	https://gpuinspector.dev/
agi	Android GPU Inspector	https://gpuinspector.dev/
Agisoft Metashape Professional Edition	Process digital images and generate 3D spatial data	https://www.agisoft.com/
Agisoft Metashape Standard Edition	Process digital images and generate 3D spatial data	https://www.agisoft.com/
AI Studio 2026.1.1	Data science platform	https://altair.com/altair-rapidminer
Aide	Open-source AI-native IDE	https://github.com/codestoryai/aide
aider-desk	Desktop GUI for Aider AI pair programming	https://github.com/hotovo/aider-desk
AiderDesk	Desktop GUI for Aider AI pair programming	https://github.com/hotovo/aider-desk
AiFun	AI chat and painting app	https://getaifun.com/
AigcPanel	AI video, audio and broadcast generator	https://aigcpanel.com/
Aimersoft Video Converter Ultimate	Video converter app	https://www.aimersoft.com/video-converter-ultimate.html
AionUi	Unified GUI for command-line AI agents	https://www.aionui.com/
Air	Agentic development environment	https://air.dev/
Air Video Server HD	Tool to stream videos to Apple devices	https://airvideo.app/
Air VPN	OpenVPN UI	https://eddie.website/
AirBuddy	AirPods companion app	https://airbuddy.app/
Aircall	Cloud-based call center and phone system software	https://aircall.io/
AirDash	Transfer photos and files to any device	https://airdash-project.web.app/
AirDash158	Transfer photos and files to any device	https://airdash-project.web.app/
AirDroid	Mobile device management suite	https://www.airdroid.com/
Airflow	Watch local content on Apple TV and Chromecast	https://airflowapp.com/
Airfoil	Sends audio from computer to outputs	https://rogueamoeba.com/airfoil/mac/
Airfoil/Airfoil	Sends audio from computer to outputs	https://rogueamoeba.com/airfoil/mac/
Airfoil/Airfoil Satellite	Sends audio from computer to outputs	https://rogueamoeba.com/airfoil/mac/
airi	AI companion and VTuber application	https://airi.moeru.ai/
AIRI	AI companion and VTuber application	https://airi.moeru.ai/
AirParrot	Tool to wirelessly mirror the screen or stream media files	https://www.airsquirrels.com/airparrot/
AirParrot 3	Tool to wirelessly mirror the screen or stream media files	https://www.airsquirrels.com/airparrot/
Airpass	Status bar app to overcome time-constrained WiFi networks	https://airpass.tiagoalves.me/
AirScroll	Smooth mouse scrolling utility	https://airscroll.net/
AirServer	Screen mirroring receiver	https://www.airserver.com/
AirStats	Menu bar system monitor	https://airstats.app/
AirSync	Continuity tools for use with Android devices	https://github.com/sameerasw/airsync-mac
Airtable	Spreadsheet-database hybrid cloud collaboration	https://airtable.com/
Airtame	Wireless screen sharing platform	https://airtame.com/
Airtool	Capture Wi-Fi packets	https://www.intuitibits.com/products/airtool/
Airtrash	Clone of Apple's Airdrop - easy P2P file transfer	https://github.com/maciejczyzewski/airtrash/
airtrash	Clone of Apple's Airdrop - easy P2P file transfer	https://github.com/maciejczyzewski/airtrash/
Airy	YouTube video and MP3 downloader	https://www.airy-youtube-downloader.com/mac/
Ajour	World of Warcraft addon manager	https://github.com/casperstorm/ajour
Akiflow	Time blocking and productivity platform	https://akiflow.com/
AKS desktop	Azure Kubernetes Service desktop application	https://github.com/Azure/aks-desktop
Akuity	Management tool for the Akuity Platform	https://akuity.io/
Alacritty	GPU-accelerated terminal emulator	https://github.com/alacritty/alacritty/
Aladin Desktop	Interactive sky atlas	https://aladin.cds.unistra.fr/AladinDesktop/
ALCOM	Graphical frontend of vrc-get, open source alternative to VRChat Package Manager	https://vrc-get.anatawa12.com/alcom
Alcove	Utility to add Dynamic Island like features to notch area	https://tryalcove.com/
AlDente	Menu bar tool to limit maximum charging percentage	https://apphousekitchen.com/
Aleph One	Open-source continuation of Bungie's Marathon 2 game engine	https://alephone.lhowon.org/
Alfaview	Audio video conferencing	https://alfaview.com/
Alfred	Application launcher and productivity software	https://www.alfredapp.com/
Alfred 4	Application launcher and productivity software	https://www.alfredapp.com/
Alfred 5	Application launcher and productivity software	https://www.alfredapp.com/
AlgoApp	Spaced Repetition Flashcard App	https://www.algoapp.ai/
Algodoo	Draw and interact with physical systems	https://www.algodoo.com/
Alifix	Refreshes aliases and identifies broken aliases	https://eclecticlight.co/taccy-signet-precize-alifix-utiutility-alisma/
alifix14/Alifix	Refreshes aliases and identifies broken aliases	https://eclecticlight.co/taccy-signet-precize-alifix-utiutility-alisma/
Alipay Open Platform Key Tool	Key generation tool	https://opendocs.alipay.com/common/02kipk
Alisma	Command tool to create Finder aliases, and to resolve them to full paths	https://eclecticlight.co/taccy-signet-precize-alifix-utiutility-alisma/
AliWangwang	Shopping communication tool for Taobao and Tmall users	https://pages.tmall.com/wow/qnww/act/index
Aliworkbench	Merchant workbench for Taobao and Tmall sellers	https://work.taobao.com/
AliWorkBench	Merchant workbench for Taobao and Tmall sellers	https://work.taobao.com/
Aliyundrive	Intelligent cloud storage platform	https://www.aliyundrive.com/
All-in-One Messenger	Combined interface for various messaging platforms	https://allinone.im/
Alloy	Programming language for software modelling	https://alloytools.org/
Alma	AI chat application	https://alma.now/
Almighty	Settings and tweaks configurator	https://indiegoodies.com/almighty
Aloha	Web browser focused on privacy	https://alohabrowser.com/
Aloha Browser	Web browser focused on privacy	https://alohabrowser.com/
Alpha	Text editor based on Apple's Cocoa framework	https://alphacocoa.sourceforge.io/
Altair AI Studio	Data science platform	https://altair.com/altair-rapidminer
Altair GraphQL Client	GraphQL client	https://altairgraphql.dev/
Altar AI	AI-powered meeting assistant	https://app.altar.inc/
Alternote	Note-taking App for Evernote	https://alternoteapp.com/
AlterSend	Secure, peer-to-peer file transfer app	https://altersend.com/
AltServer	iOS App Store alternative	https://altstore.io/
AltTab	Enable Windows-like alt-tab	https://alt-tab.app/
Amadeus Pro	Multi-purpose audio recorder, editor and converter	https://www.hairersoft.com/pro.html
Amadeus Pro 3	Multi-purpose audio recorder, editor and converter	https://www.hairersoft.com/pro.html
Amadine	Vector graphic and illustration software	https://amadine.com/
Amazing Marvin	Personal productivity app	https://www.amazingmarvin.com/
Amazon Chime	Communications service	https://chime.aws/
Amazon Corretto JDK	OpenJDK distribution from Amazon	https://corretto.aws/
Amazon Drive	Photo storage and sharing service	https://www.amazon.com/Amazon-Photos/b?node=13234696011
Amazon DynamoDB Local	Development tool for DynamoDB	https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/DynamoDBLocal.html
Amazon Music	Desktop client for Amazon Music	https://www.amazon.com/musicapps
Amazon Photos	Photo storage and sharing service	https://www.amazon.com/Amazon-Photos/b?node=13234696011
Amazon Workspaces	Cloud native persistent desktop virtualization	https://clients.amazonworkspaces.com/
AMD Power Gadget	Power management, monitoring and VirtualSMC plugin for AMD processors	https://github.com/trulyspinach/SMCAMDProcessor
Amethyst	Automatic tiling window manager similar to xmonad	https://ianyh.com/amethyst/
Amiberry	Amiga emulator	https://amiberry.com/
Amical	AI dictation app	https://amical.ai/
Amie	Calendar and task manager	https://amie.so/
Ammonite	Tag visualiser and search utility	https://www.soma-zone.com/Ammonite/
Amnezia VPN	VPN client	https://amnezia.org/
Amore	App distribution platform with Sparkle, code signing, and notarization	https://amore.computer/
AMPPS	Software stack for website development	https://www.ampps.com/
Anaconda Distribution	Distribution of the Python and R programming languages for scientific computing	https://www.anaconda.com/
Ananas Analytics Desktop Edition	Hackable data integration & analysis tool	https://ananasanalytics.com/
Anarlog	AI notepad for meetings	https://anarlog.so/
Anchor Wallet	EOSIO Desktop Wallet and Authenticator	https://www.greymass.com/anchor
Android CLI	Command-line interface for Android app development with AI agents	https://developer.android.com/tools/agents/android-cli
Android File Transfer	Transfer files from and to an Android smartphone	https://www.android.com/filetransfer/
Android File Transfer for Linux	Android File Transfer for Linux	https://whoozle.github.io/android-file-transfer-linux/
Android Messages	Desktop client for Android Messages	https://github.com/OrangeDrangon/android-messages-desktop
Android Messages Desktop	Desktop client for Android Messages	https://github.com/OrangeDrangon/android-messages-desktop
Android NDK	Toolset to implement parts of Android apps in native code	https://developer.android.com/ndk/index.html
Android Performance Analyzer	Toolchain for profiling apps and games	https://developer.android.com/android-performance-analyzer
Android SDK Command-line Tools	Command-line tools for building and debugging Android apps	https://developer.android.com/studio
Android SDK Platform-Tools	Android SDK component	https://developer.android.com/tools/releases/platform-tools
Android Studio	Tools for building Android applications	https://developer.android.com/studio/
Android Studio Preview (Beta)	Tools for building Android applications	https://developer.android.com/studio/preview/
Android Studio Preview (Canary)	Tools for building Android applications	https://developer.android.com/studio/preview/
Android Studio Preview Canary	Tools for building Android applications	https://developer.android.com/studio/preview/
AndroidTool	App for recording the screen and installing apps in iOS and Android	https://github.com/mortenjust/androidtool-mac
Angband	Dungeon exploration game	https://angband.github.io/angband/
Angry IP Scanner	Network scanner	https://angryip.org/
Anka Build Cloud Controller	Anka virtual machine orchestrator GUI & API	https://veertu.com/
Anka Virtualization	CLI tool for managing and creating macOS virtual machines	https://veertu.com/
Ankama Launcher	Video game launcher	https://www.ankama.com/en/launcher
AnkerWork	Webcam & audio device software	https://us.ankerwork.com/pages/download-software
Anki	Memory training application	https://apps.ankiweb.net/
Annotate	Keyboard-driven screen annotation tool	https://github.com/epilande/Annotate/
Another Redis Desktop Manager	Redis desktop manager	https://github.com/qishibo/AnotherRedisDesktopManager/
AntConc	Corpus analysis toolkit for concordancing and text analysis	https://www.laurenceanthony.net/software/antconc/
Antigravity	Agent orchestration platform	https://antigravity.google/product/antigravity-2
Antigravity IDE	AI Coding Agent IDE	https://antigravity.google/product/antigravity-ide
Antinote	Temporary notes with calculations and extensible features	https://antinote.io/
Any.do	Reminder, planner & calendar	https://www.any.do/
AnyBar	Menu bar status indicator	https://github.com/tonsky/AnyBar
AnyDesk	Allows connection to a computer remotely	https://anydesk.com/
Anydo	Reminder, planner & calendar	https://www.any.do/
AnyList	Grocery shopping list	https://www.anylistapp.com/
Anypoint Studio	Eclipse-based IDE for designing and testing Mule applications	https://www.mulesoft.com/platform/studio
AnypointStudio	Eclipse-based IDE for designing and testing Mule applications	https://www.mulesoft.com/platform/studio
AnythingLLM	Private desktop AI chat application	https://anythingllm.com/
Anytype	Local-first and end-to-end encrypted notes app	https://anytype.io/
Ao	Elegant Microsoft To-Do desktop app	https://github.com/klaussinani/ao
Apache CouchDB	Multi-master syncing database	https://couchdb.apache.org/
Apache Directory Studio	Eclipse-based LDAP browser and directory client	https://directory.apache.org/studio/
Apache OpenOffice	Free and open-source productivity suite	https://www.openoffice.org/
ApacheDirectoryStudio	Eclipse-based LDAP browser and directory client	https://directory.apache.org/studio/
ApE	Software for DNA sequence analysis and annotation	https://jorgensen.biology.utah.edu/wayned/ape/
ApE (A Plasmid Editor)	Software for DNA sequence analysis and annotation	https://jorgensen.biology.utah.edu/wayned/ape/
Aphera	Raw photo editing software	https://aphera.co/
Apidog	API development platform	https://apidog.com/
Apidog Europe	API development platform hosted in Europe	https://apidog.com/
Apifox	Platform for API documentation, debugging, and testing	https://github.com/apifox/apifox
ApiPost	Platform for API documentation, debugging, Mock and testing	https://www.apipost.cn/
Apipost	Platform for API documentation, debugging, Mock and testing	https://www.apipost.cn/
App Buddy	Helper for Sindre Sorhus's apps	https://sindresorhus.com/app-buddy
App Cleaner 10	Uninstaller and cleaning assistant	https://nektony.com/mac-app-cleaner
App Fair	Catalogue of free and commercial native desktop applications	https://appfair.app/
App Tamer	CPU management application	https://www.stclairsoft.com/AppTamer/
Apparency	Inspect application bundles	https://www.mothersruin.com/software/Apparency/
AppBox	iOS app distribution tool	https://getappbox.com/
AppCleaner	Application uninstaller	https://freemacsoft.net/appcleaner/
AppexIndexer	List and inspect installed app extensions	https://eclecticlight.co/2025/04/10/discover-appexes-with-appexindexer/
appexindexer108/AppexIndexer	List and inspect installed app extensions	https://eclecticlight.co/2025/04/10/discover-appexes-with-appexindexer/
AppFlowy	Open-source project and knowledge management tool	https://www.appflowy.io/
AppFlowy-arm64	Open-source project and knowledge management tool	https://www.appflowy.io/
AppGate SDP Client for macOS	Software-defined perimeter for secure network access	https://support.appgate.com/support/appgate-ztna-user-guide
AppGrid	Window manager with Vim–like hotkeys	https://github.com/mjolnirapp/AppGrid/
AppGridMac	AI-assisted Launchpad replacement	https://appgridmac.com/
Appium Inspector	GUI inspector for mobile apps	https://github.com/appium/appium-inspector/
Appium Inspector GUI	GUI inspector for mobile apps	https://github.com/appium/appium-inspector/
Apple Juice	Battery gauge that displays the remaining battery time and more	https://github.com/raphaelhanneken/apple-juice
Apple Store Time Machine	3D reconstruction of Apple Retail Stores on their opening days	https://departmentmap.store/timemachine/
ApplePi-Baker	Backup and restore SD cards, USB drives, external HDD, etc	https://www.tweaking4all.com/hardware/raspberry-pi/applepi-baker-v2/
ApplePiBaker	Backup and restore SD cards, USB drives, external HDD, etc	https://www.tweaking4all.com/hardware/raspberry-pi/applepi-baker-v2/
Applite	User-friendly GUI app for Homebrew	https://applite.app/
approf	Native app for pprof	https://github.com/moderato-app/approf
AppTamer	CPU management application	https://www.stclairsoft.com/AppTamer/
Apptivate	Create global hotkeys for your files and applications	http://www.apptivateapp.com/
AppVolume	Per-application volume control	https://appvolume.app/
AppZapper	Tool to uninstall unwanted applications and their support files	https://appzapper.com/
Aptakube	Kubernetes desktop client	https://aptakube.com/
Aptible Toolbelt	Command-line tool for Aptible Deploy, an audit-ready App Deployment Platform	https://www.aptible.com/docs/reference/aptible-cli/overview
Aqua	Tests writing environment	https://www.jetbrains.com/aqua/
Aqua Data Studio	Database IDE with data management and visual analytics	https://aquadatastudio.com/
Aqua Voice	Speech-to-text system	https://aquavoice.com/
Aquafold Aqua Data Studio	Database IDE with data management and visual analytics	https://aquadatastudio.com/
Aquamacs	Text editor based on GNU Emacs	https://aquamacs.org/
AquaSKK	Input method without morphological analysis	https://github.com/codefirst/aquaskk
Araxis Merge	Two and three-way file comparison, merging and folder synchronisation	https://www.araxis.com/merge/
Arc	Chromium based browser	https://arc.net/
ArcBox	Runtime for containers, Linux virtual machines, and AI agent sandboxes	https://arcbox.dev/
Archaeology	Tool for digging into binary files	https://www.mothersruin.com/software/Archaeology/
Archi	Open-source ArchiMate modelling toolkit	https://www.archimatetool.com/
Archipelago	Terminal emulator built on web technology	https://github.com/npezza93/archipelago
Archiver	Open archives, compress files, as well as split and combine files	https://archiverapp.com/
ArchiveWeb.page	Archive webpages manually to WARC or WACZ files as you browse the web	https://archiveweb.page/
Archy	YAML processor	https://developer.genesys.cloud/devapps/archy/
Arctic	Display and manage Final Cut Pro X libraries	https://hedge.video/arctic
Arctype	SQL client and database management tool	https://arctype.com/
Arduino IDE	Electronics prototyping platform	https://www.arduino.cc/en/software
ares	Cross-platform, multi-system emulator, focusing on accuracy and preservation	https://ares-emu.net/
ares-v148/ares	Cross-platform, multi-system emulator, focusing on accuracy and preservation	https://ares-emu.net/
Aria Maestosa	Midi sequencer and editor	https://ariamaestosa.github.io/ariamaestosa/docs/index.html
Aria2D	Aria2 GUI	https://github.com/xjbeta/Aria2D
AriaNg Native	Better aria2 desktop frontend than AriaNg	https://github.com/mayswind/AriaNg-Native
AriaX	Aria2 download manager	https://github.com/saltpi/Aria.X
ArKiwi	File archiver	https://www.mariogt.com/arkiwi.html
Arm Performance Libraries	Optimized standard core math libraries for Arm processors	https://developer.arm.com/tools-and-software/arm-performance-libraries
Arm Performix	Performance analysis toolkit for Arm server and cloud environments	https://developer.arm.com/servers-and-cloud-computing/arm-performix
Armory	Python-Based Bitcoin Software	https://btcarmory.com/
Arq	Multi-cloud backup application	https://www.arqbackup.com/
Arq Cloud Backup	Backup software	https://www.arqbackup.com/
artifacts/osx-arm64/ILSpy	Avalonia-based .NET decompiler	https://github.com/icsharpcode/AvaloniaILSpy
Artisan	Visual scope for coffee roasters	https://artisan-scope.org/
Arturia Software Center	Installer and license activation for Arturia products	https://www.arturia.com/technology/asc
AS Timer	Timer app	https://www.alinofsoftware.ch/apps/products-timer/index.html
Asana	Manage team projects and tasks	https://asana.com/
AsciidocFX	Asciidoc editor and toolchain to build books, documents and slides	https://www.asciidocfx.com/
Aside	Web browser with built-in AI assistant	https://aside.com/
Asset Catalog Tinkerer	Browse/extract images from .car files	https://github.com/insidegui/AssetCatalogTinkerer
Assinador Serpro	Validate and sign documents using digital certificates	https://www.serpro.gov.br/links-fixos-superiores/assinador-digital/assinador-serpro
ASTRO Command Center	Full configuration of the adjustable settings for ASTRO devices	https://www.astrogaming.com/
Astro Editor	Markdown editor for Astro content collections	https://astroeditor.danny.is/
Astrofox	Motion graphics program for music visualisations	https://astrofox.io/
Astropad Studio	Turn your iPad into a professional drawing tablet	https://astropad.com/
atemOSC	Control BMD ATEM video switchers with OSC	https://atemosc.com/
aText	Tool to replace abbreviations while typing	https://www.trankynam.com/atext/
Athas	Lightweight code editor	https://athas.dev/
Atlas	Source control for coding agents	https://github.com/pacifio/atlas
Atlassian SourceTree	Graphical client for Git version control	https://www.sourcetreeapp.com/
Atlassian Sourctree	Graphical client for Git version control	https://www.sourcetreeapp.com/
ATLauncher	Minecraft launcher	https://atlauncher.com/
ATOK	Japanese input method editor (IME) produced by JustSystems	https://www.justsystems.com/jp/products/atokmac/
Atoll	Dynamic Island for the MacBook notch	https://getatoll.app/
AtomCode	Open-source terminal AI coding agent	https://atomgit.com/atomgit_atomcode/atomcode
Atomic Wallet	Manage Bitcoin, Ethereum, XRP, Litecoin, XLM and over 300 other coins and tokens	https://atomicwallet.io/
AttacheCase	Utility for encrypting/decrypting files and directories	https://hibara.org/software/attachecase/
Atuin	Runbook editor for terminal workflows	https://atuin.sh/
Atuin Desktop	Runbook editor for terminal workflows	https://atuin.sh/
ATV Remote	Control Apple TV from your desktop	https://github.com/bsharper/atv-desktop-remote
AU Lab	Digital audio mixing application	https://www.apple.com/apple-music/apple-digital-masters/
Audacity	Multi-track audio editor and recorder	https://www.audacityteam.org/
Audacity 4	Multi-track audio editor and recorder	https://www.audacityteam.org/
Audio Hijack	Records audio from any application	https://rogueamoeba.com/audiohijack/
Audio Modeling Software Center	Application for downloading, installing and updating Audio Modeling software	https://audiomodeling.com/
Audiobook Builder	Turn audio CDs and files into audiobooks	https://www.splasm.com/audiobookbuilder/
AudioCupcake	Master your audiobook narration and podcasts	https://www.audiocupcake.com/
AudioGridder Plugin	VST2/VST3/AU/AAX DSP Server Plugin	https://audiogridder.com/
AudioGridder Server	VST2/VST3/AU DSP Server	https://audiogridder.com/
AudioRelay	Stream audio between your devices	https://www.audiorelay.net/
Audirvana	Audio playback software	https://audirvana.com/
Audius	Music streaming and sharing platform	https://audius.co/
augur	App that bundles Augur UI and Augur Node together and deploys them locally	https://github.com/AugurProject/augur-app/
Augur	App that bundles Augur UI and Augur Node together and deploys them locally	https://github.com/AugurProject/augur-app/
Aural	Audio player inspired by Winamp	https://github.com/maculateConception/aural-player
Aural Player	Audio player inspired by Winamp	https://github.com/maculateConception/aural-player
Aurora HDR	HDR photo editor with filters, batch processing and more	https://skylum.com/aurorahdr
AusweisApp	Official eID-Client of the Federal Government of Germany	https://www.ausweisapp.bund.de/
Auto Claude	Autonomous multi-session AI coding	https://aperant.com/
Auto-Claude	Autonomous multi-session AI coding	https://aperant.com/
Autodesk EAGLE	Electronic design automation software	https://www.autodesk.com/products/eagle/overview
Autodesk Fusion 360	Integrated CAD, CAM, CAE, and PCB software	https://www.autodesk.com/products/fusion-360/overview
AutoDMG	App for creating deployable system images from a system installer	https://github.com/MagerValp/AutoDMG
AutoFirma	Digital signature editor and validator	https://firmaelectronica.gob.es/ciudadanos/descargas
autogram	Application for electronic signing of signatures	https://sluzby.slovensko.digital/autogram/
AutoMounterHelper	Helper for AutoMounter to mount shares to custom locations	https://pixeleyes.co.nz/automounter/helper/
AutoPkgr	Install and configure AutoPkg	https://www.lindegroup.com/autopkgr
AutoSubs	Subtitle generator for audio and video files	https://github.com/tmoroney/auto-subs/
AutoVolume	Tool that automatically sets the volume to a specified volume	https://github.com/jesse-c/AutoVolume
Autumn	Window manager for JavaScript development	https://apandhi.github.io/Autumn/
Avast Secure Browser	Web browser focusing on privacy	https://www.avast.com/secure-browser#mac
Avast Security	Antivirus software	https://www.avast.com/
avbeam	Audio file similarity viewer	https://speechpulse.com/avbeam-software-store/avbeam/
AVbeam	Audio file similarity viewer	https://speechpulse.com/avbeam-software-store/avbeam/
AVG Antivirus for Mac	Antivirus software	https://www.avg.com/us-en/avg-antivirus-for-mac
Aviatrix VPN Client	VPN client that provides SAML authentication	https://docs.aviatrix.com/docs/enterprise/latest/guides/uservpn/user-vpn-client-download
Avidemux	Video editor	https://www.avidemux.org/
Avidemux_2.8.1	Video editor	https://www.avidemux.org/
AVIFQuickLook	Quick Look Plugin for AVIF images	https://github.com/dreampiggy/AVIFQuickLook
AVItools	Graphical interface for a variety of video file processing tools	https://www.emmgunn.com/avitools-home/
avitools3.7.2/AVItools	Graphical interface for a variety of video file processing tools	https://www.emmgunn.com/avitools-home/
Avogadro	Molecule editor and visualiser	https://avogadro.cc/
Avogadro2	Molecule editor and visualiser	https://avogadro.cc/
AVTouchBar	Audio Visualiser for the Touch Bar	https://www.avtouchbar.com/
AW EDID Editor	Edit any standard EDID binary file, supports DisplayID and CEA-861-G extensions	https://www.analogway.com/products/aw-edid-editor
AWA	Music streaming service	https://awa.fm/
Aware	Menubar app to track active computer use	https://awaremac.com/
AWS Client VPN	Managed client-based VPN service to securely access AWS resources	https://aws.amazon.com/vpn/
AWS Corretto JDK	OpenJDK distribution from Amazon	https://corretto.aws/
AWS Vault	Securely stores and accesses AWS credentials in a development environment	https://github.com/99designs/aws-vault
AX88179	USB 3.0 to gigabit ethernet drivers for ASIX Electronics devices	https://www.asix.com.tw/en/support/download
Axure RP	Planning and prototyping tool for developers	https://www.axure.com/
Axure RP 11	Planning and prototyping tool for developers	https://www.axure.com/
AYA	Android ADB desktop app	https://aya.liriliri.io/
AyuGram	Telegram client with ghost mode and message history	https://github.com/AyuGram/AyuGramDesktop
azooKey	Japanese input method	https://github.com/azooKey/azooKey-Desktop
Azul Zulu Java 8 Standard Edition Development Kit	OpenJDK distribution from Azul	https://www.azul.com/
Azul Zulu Java Standard Edition Development Kit	OpenJDK distribution from Azul	https://www.azul.com/downloads/
Azure Data Studio	Data management tool that enables working with SQL Server	https://docs.microsoft.com/en-us/sql/azure-data-studio/
BA connected	Configurator and manager for BrightSign devices	https://www.brightsign.biz/resources/software-downloads/
BabelEdit	Translation editor	https://www.codeandweb.com/babeledit
Backblaze	Data backup and storage service	https://backblaze.com/
Backblaze Downloader	Download Backblaze restored files more reliably	https://www.backblaze.com/
Backblaze Restore	Computer backup restore client	https://backblaze.com/
BackblazeDownloader	Download Backblaze restored files more reliably	https://www.backblaze.com/
BackblazeRestore	Computer backup restore client	https://backblaze.com/
Backdrop	Live wallpaper app	https://cindori.com/backdrop
Background Music	Audio utility	https://github.com/kyleneideck/BackgroundMusic
BackupLoupe	Alternative GUI for Time Machine	https://www.soma-zone.com/BackupLoupe/
Backyard AI	Run AI models locally	https://backyard.ai/
Badgeify	Add apps to the menu bar	https://badgeify.app/
Badlion Client	Minecraft launcher	https://www.badlion.net/
Baidu NetDisk	Cloud storage service	https://pan.baidu.com/
BaiduNetdisk_mac	Cloud storage service	https://pan.baidu.com/
Balance Lock	Prevents audio balance from drifting left or right	https://www.tunabellysoftware.com/balance_lock
balenaEtcher	Tool to flash OS images to SD cards & USB drives	https://balena.io/etcher
Ball	Utility that adds a ball to your dock	https://github.com/nate-parrott/ball
ballast	Status Bar app to keep the audio balance from drifting	https://jamsinclair.nz/ballast
Balsamiq Wireframes	UI wireframing tool	https://balsamiq.com/
Bambu Connect	Tool for linking with Bambu Lab 3D printers	https://wiki.bambulab.com/en/software/bambu-connect
Bambu Studio	3D model slicing software for 3D printers, maintained by Bambu Lab	https://bambulab.com/en/download/studio
BambuStudio	3D model slicing software for 3D printers, maintained by Bambu Lab	https://bambulab.com/en/download/studio
Banana Cake Pop	IDE to interact with GraphQL servers	https://chillicream.com/
Bandage	Bioinformatics app for navigating de novo assembly graphs	https://rrwick.github.io/Bandage/
BankID Security Application (Sweden)	Swedish personal electronic identification (eID) system	https://install.bankid.com/
Banking 4	German accounting software	https://banking4.de/index.html
banksiagui	Chess GUI	https://banksiagui.com/
banksiagui-0.58/banksiagui	Chess GUI	https://banksiagui.com/
Banktivity	App to manage bank accounts in one place	https://www.iggsoftware.com/banktivity/
BaoLianDeng	VPN proxy powered by Mihomo (Clash Meta)	https://madeye.github.io/BaoLianDeng/
baretorrent	Bittorrent client	https://launchpad.net/baretorrent
Baritone	Spotify controls that live in the menu bar	https://tma02.github.io/baritone/
Baritone-darwin-x64/Baritone	Spotify controls that live in the menu bar	https://tma02.github.io/baritone/
Barrier	Open-source KVM software	https://github.com/debauchee/barrier/
Bartender	Menu bar icon organiser	https://www.macbartender.com/
Bartender 7	Menu bar icon organiser	https://www.macbartender.com/
Base	App to create, design, edit and browse SQLite 3 database files	https://menial.co.uk/base/
Basecamp	All-In-One Toolkit for Working Remotely	https://basecamp.com/
Baseline	Automate onboardings by installing apps and running scripts	https://github.com/SecondSonConsulting/Baseline
BasicTeX	Compact TeX distribution as alternative to the full TeX Live / MacTeX	https://www.tug.org/mactex/morepackages.html
BatchOutput PDF	Automate PDF printing	https://zevrix.com/batchoutputpdf/
BatFi	App for managing battery charging	https://micropixels.software/batfi
BathyScaphe	2-channel browser	https://bathyscaphe.bitbucket.io/
Batteries	Track all your devices' batteries	https://www.fadel.io/batteries/
battery	App for managing battery charging. (Also installs a CLI on first use.)	https://github.com/actuallymentor/battery/
Battery	App for managing battery charging. (Also installs a CLI on first use.)	https://github.com/actuallymentor/battery/
Battery Buddy	Replacement of the default battery indicator in the menu bar	https://batterybuddy.app/
BatteryBoi	Battery indicator for the menu bar	https://batteryboi.ovatar.io/
BattleScribe	Army list creator for tabletop wargamers	https://battlescribe.net/
Bazecor	Graphical configurator for Dygma Raise keyboards	https://github.com/Dygmalab/Bazecor
bb	IDE for running and orchestrating coding agents	https://getbb.app/
BBackupp	iOS device backup software	https://github.com/Lakr233/BBackupp
BBEdit	Text, code, and markup editor	https://www.barebones.com/products/bbedit/
BCUT	Professional video editing software by Bilibili	https://bcut.bilibili.cn/
Bcut	Professional video editing software by Bilibili	https://bcut.bilibili.cn/
Bdash	Simple SQL Client for lightweight data analysis	https://github.com/bdash-app/bdash
BDInfo	Collect video and audio technical specifications from Blu-ray discs	https://www.videohelp.com/software/BDInfo
BDInfo OSX	Collect video and audio technical specifications from Blu-ray discs	https://www.videohelp.com/software/BDInfo
Beacon Scanner	Utility to scan for iBeacon-compatible devices	https://github.com/mlwelles/BeaconScanner/
BeaconScanner	Utility to scan for iBeacon-compatible devices	https://github.com/mlwelles/BeaconScanner/
Beamer	Desktop casting/streaming app for Apple TV and Chromecast	https://softorino.com/beamer/
Bean	Word processor	https://www.bean-osx.com/Bean.html
Bean-Install-3-7-8/Bean	Word processor	https://www.bean-osx.com/Bean.html
Beardie	Control various media players with your keyboard	https://github.com/Stillness-2/beardie
BEAST2	Bayesian evolutionary analysis by sampling trees	https://www.beast2.org/
beaTunes	Analyze, inspect, and play songs	https://www.beatunes.com/
beaTunes5	Analyze, inspect, and play songs	https://www.beatunes.com/
Beaver Notes	Privacy-focused note-taking app	https://beavernotes.com/
Beekeeper Studio	Cross platform SQL editor and database management app	https://www.beekeeperstudio.io/
Beeper	Universal chat app powered by Matrix	https://www.beeper.com/
Beeper Desktop	Universal chat app powered by Matrix	https://www.beeper.com/
BeerSmith	Beer brewing software	https://beersmith.com/
BeerSmith4	Beer brewing software	https://beersmith.com/
Belgian eID Middleware	Middleware for the Belgian eID system	https://eid.belgium.be/
Belgian eID Viewer	Belgian ID card reader	https://eid.belgium.be/
BentoBox	Window manager that organizes desktop applications into predefined zones	https://bentoboxapp.com/
Berkeley Open Infrastructure for Network Computing	Downloads scientific computing jobs and runs them invisibly in the background	https://boinc.berkeley.edu/
Berrycast	Screen recorder	https://www.berrycast.com/
Bespoke Synth	Software modular synth	https://www.bespokesynth.com/
BespokeSynth	Software modular synth	https://www.bespokesynth.com/
Betaflight Configurator	Configuration tool for the Betaflight firmware	https://github.com/betaflight/betaflight-configurator
Betaflight-Configurator	Configuration tool for the Betaflight firmware	https://github.com/betaflight/betaflight-configurator
Betelguese	Odysseyra1n installer GUI for jailbroken devices	https://github.com/23Aaron/Betelguese
Better And Better	Keyboard, mouse and touchpad motion gestures	https://www.better365.cn/bab2.html
Better Shot	Screen capturing and editing tool	https://bettershot.site/
Better Window Manager	Tools to save/restore window states	http://www.gngrwzrd.com/better-window-manager/
BetterAndBetter	Keyboard, mouse and touchpad motion gestures	https://www.better365.cn/bab2.html
BetterCapture	Screen recorder	https://bettercapture.app/
BetterCmdTab	Replacement for the built-in Cmd+Tab app switcher	https://bettercmdtab.app/
BetterDiscord	Installer for BetterDiscord	https://betterdiscord.app/
BetterDiscord Installer	Installer for BetterDiscord	https://betterdiscord.app/
BetterDisplay	Display management tool	https://betterdisplay.pro/
BetterMacWidgets	Live-animated widgets that sit on the desktop	https://bettermacwidgets.de/
BetterMouse	Utility improving 3rd party mouse performance and functionalities	https://better-mouse.com/
BetterShot	Screen capturing and editing tool	https://bettershot.site/
BetterTouchTool	Tool to customise input devices and automate computer systems	https://folivora.ai/
BetterZip	Utility to create and modify archives	https://macitbetter.com/
Betwixt	Web Debugging Proxy based on Chrome DevTools Network panel	https://github.com/kdzwinel/betwixt
Betwixt-darwin-x64/Betwixt	Web Debugging Proxy based on Chrome DevTools Network panel	https://github.com/kdzwinel/betwixt
Beutl	Video editor	https://beutl.beditor.net/
Beyond Compare	Compare files and folders	https://www.scootersoftware.com/
Bezel	iOS screen output recorder	https://getbezel.app/
BibDesk	Edit and manage bibliographies	https://bibdesk.sourceforge.io/
Bifrost	Samsung firmware downloader	https://bifrost.zwander.dev/
Big Mean Folder Machine	File/folder management utility	https://www.publicspace.net/BigMeanFolderMachine/
Big Mean Folder Machine 2	File/folder management utility	https://www.publicspace.net/BigMeanFolderMachine/
biglybt	Bittorrent client based on the Azureus open source project	https://www.biglybt.com/
Bike	Record and process your ideas	https://www.hogbaysoftware.com/bike/
Bilibili	Official bilibili video streaming and sharing platform	https://app.bilibili.com/
BiliDownloader	BiliBili media downloader	https://github.com/JimmyLiang-lzm/biliDownloader_GUI
biliDownloader_GUI	BiliBili media downloader	https://github.com/JimmyLiang-lzm/biliDownloader_GUI
bilimini	Small window bilibili client	https://github.com/chitosai/bilimini
Billings Pro	Invoices, estimates, quotes and time-tracking	https://www.marketcircle.com/billingspro/
Billy	Invoice manager	https://usebilly.app/
Billy Frontier	Arcade style, cowboys in space themed action game from Pangea Software	https://jorio.itch.io/billyfrontier
Binance	Cryptocurrency exchange	https://binance.com/
Binary Ninja	Reverse engineering platform	https://binary.ninja/
BinDiff	Binary diffing tool	https://zynamics.com/bindiff.html
Bing Wallpaper	Use the Bing daily image as your wallpaper	https://www.bing.com/apps/wallpaper
Bino	Video player	https://bino3d.org/
Bionic	AI agent for working with open models	https://lmstudio.ai/
BirdFont	Font editor	https://birdfont.org/
BirdFontNonCommercial	Font editor	https://birdfont.org/
Biscuit	Browser to organise apps	https://eatbiscuit.com/
Bison Wallet	Multi-coin wallet with feeless DEX, atomic swaps, and arbitrage tools	https://github.com/decred/dcrdex
Bisq	Decentralised bitcoin exchange network	https://bisq.network/
Bit Fiddle	Converts decimal, hexadecimal, binary numbers and ASCII characters	https://manderc.com/apps/bitfiddle/index_eng.php
Bit Slicer	Universal game trainer	https://github.com/zorgiepoo/bit-slicer/
BitBar	Utility to display the output from any script or program in the menu bar	https://github.com/matryer/bitbar/
BitBox	Protect your coins with the latest Swiss made hardware wallet	https://bitbox.swiss/
Bitcoin Core	Bitcoin client and wallet	https://bitcoincore.org/
Bitcoin-Qt	Bitcoin client and wallet	https://bitcoincore.org/
Bitfocus Buttons	Unified control and monitoring software	https://bitfocus.io/buttons
Bitfocus Companion	Streamdeck extension and emulation software	https://bitfocus.io/companion
Bitfocus Satellite	Satellite connection client for Bitfocus Companion	https://bitfocus.io/companion-satellite
Bitmessage	P2P communications protocol	https://bitmessage.org/
BitMuse	Bit-perfect music player for local hi-res libraries	https://bitmuse.app/
Bitrix24	Business management platform	https://www.bitrix24.com/apps/mobile-and-desktop-apps.php#desktop_app
Bitwarden	Desktop password and login vault	https://bitwarden.com/
Bitwig Studio	Digital audio workstation	https://www.bitwig.com/
Black Ink	Download, solve, and print crossword puzzles	https://redsweater.com/blackink/
BLack Light	Apply special vision effects on your screen	https://michelf.ca/projects/black-light/
Black Light	Apply special vision effects on your screen	https://michelf.ca/projects/black-light/
BlackHole 16ch	Virtual Audio Driver	https://existential.audio/blackhole/
BlackHole 2ch	Virtual Audio Driver	https://existential.audio/blackhole/
BlackHole 64ch	Virtual Audio Driver	https://existential.audio/blackhole/
Blankie	Ambient sound mixer for creating custom soundscapes	https://blankie.rest/
Blender	3D creation suite	https://www.blender.org/
Blender Benchmark Launcher	3D performance benchmarking tool	https://opendata.blender.org/
Blender LTS	3D creation suite	https://www.blender.org/
Blender Open Data Benchmark	3D performance benchmarking tool	https://opendata.blender.org/
BLEUnlock	Lock/unlock Apple computers using the proximity of a bluetooth low energy device	https://github.com/ts1/BLEUnlock
Blink1Control	Utility to control blink(1) USB RGB LED devices	https://blink1.thingm.com/
Blink1Control2	Utility to control blink(1) USB RGB LED devices	https://blink1.thingm.com/
Blip	Send any size file between devices	https://blip.net/
blip	Send any size file between devices	https://blip.net/
Blisk	Developer-oriented browser	https://blisk.io/
Blisk Browser	Developer-oriented browser	https://blisk.io/
Blitz	Performance analysis software	https://blitz.gg/
Blizzard Battle.net	Online gaming platform	https://www.battle.net/
blobby	Head-to-head multiplayer ball game	https://blobbyvolley.de/
Blobby Volley 2	Head-to-head multiplayer ball game	https://blobbyvolley.de/
blobsaver	GUI for automatically saving SHSH blobs	https://github.com/airsquared/blobsaver
Blockbench	3D model editor for boxy models and pixel art textures	https://www.blockbench.net/
BlockBlock	Monitors common persistence locations	https://objective-see.org/products/blockblock.html
Blockstream	Multi-platform Bitcoin and Liquid wallet	https://blockstream.com/green/
Blockstream Green	Multi-platform Bitcoin and Liquid wallet	https://blockstream.com/green/
Blocs	Visual web design software	https://blocsapp.com/
Blood on the Clocktower Online	Client for the game Blood on the Clocktower	https://bloodontheclocktower.com/
BloodHound	Six Degrees of Domain Admin	https://github.com/BloodHoundAD/BloodHound
BloodHound-darwin-arm64/BloodHound	Six Degrees of Domain Admin	https://github.com/BloodHoundAD/BloodHound
Bloom	File manager	https://bloomapp.club/
bloop	Code search engine	https://bloop.ai/
Blu-ray Player	Player for Blu-ray content	https://www.macblurayplayer.com/
Blu-ray Player Pro	Blu-ray player software	https://www.macblurayplayer.com/
BlueBubbles	Server for forwarding iMessages	https://bluebubbles.app/
Bluefish	Open source code editor	https://bluefish.openoffice.nl/index.html
BlueHarvest	Remove metadata files from external drives	https://zeroonetwenty.com/blueharvest/
BlueJ	Java Development Environment designed for beginners	https://www.bluej.org/
BlueSense	Detect the presence of your Bluetooth device	https://apps.inspira.io/bluesense/
Bluesnooze	Prevents your sleeping computer from connecting to Bluetooth accessories	https://github.com/odlp/bluesnooze
BlueStacks	Mobile gaming platform	https://www.bluestacks.com/
Bluetility	Bluetooth Low Energy browser	https://github.com/jnross/Bluetility
BlueWallet	Bitcoin wallet and Lightning wallet	https://bluewallet.io/
BluOS Controller	Manage audio systems	https://www.bluesound.com/
Blurred	Utility to dim background/inactive content in the screen	https://github.com/dwarvesf/blurred/
BlurScreen	Blur any part of your screen	https://www.blurscreen.app/
Bob	Translation application for text, pictures, and manual input	https://github.com/ripperhe/Bob
Bob Wallet	Handshake wallet GUI for managing transactions, name auctions, and DNS records	https://bobwallet.io/
BobHelper	Helper tool designed for Bob to solve the shortcut key issue	https://bobtranslate.com/guide/advance/bobhelper.html
BOINC	Downloads scientific computing jobs and runs them invisibly in the background	https://boinc.berkeley.edu/
BoltAI	AI chat client	https://boltai.com/
BoltAI 2	AI chat client	https://boltai.com/
Bome Network	Create MIDI connections between computers	https://www.bome.com/products/bomenet
Bonita Studio Community Edition	Business process automation and optimisation	https://www.bonitasoft.com/downloads
Bonjeff	Shows a live display of the Bonjour services published on your network	https://github.com/lapcat/Bonjeff
Bookends	Reference management and bibliography software	https://www.sonnysoftware.com/bookends-for-mac
BookletCreator	Booklet to PDF utility	https://www.bookletcreator.com/
BookMacster	Bookmarks manager	https://sheepsystems.com/products/bookmacster.html
BookWright	Make a book with this tool and the Blurb printing service	https://www.blurb.com/bookwright
Boom	Transforms audio input	https://www.globaldelight.com/boom2/
Boom 2	Transforms audio input	https://www.globaldelight.com/boom2/
Boom 3D	Volume booster and equaliser software	https://www.globaldelight.com/boom/
Boop	Scriptable scratchpad for developers	https://boop.okat.best/
Boost Note	Markdown note editor for developers	https://github.com/BoostIO/BoostNote-App
Boosteroid	Cloud gaming service	https://boosteroid.com/
Boostnote.Next	Markdown note editor for developers	https://github.com/BoostIO/BoostNote-App
Bootstrap Studio	Design and prototype websites using the Bootstrap framework	https://bootstrapstudio.io/
Bose Device Updater	Software updates for Bose products	https://btu.bose.com/
Bose Updater	Software updates for Bose products	https://btu.bose.com/
BOSS	AI-powered workspace for complex business operations	https://www.risalabs.ai/
Bot Framework Emulator	Test and debug chat bots built with the Bot Framework SDK	https://github.com/Microsoft/BotFramework-Emulator
Bowtie	Control your music with customisable shortcuts	http://bowtieapp.com/
Bowtie 1.5/Bowtie	Control your music with customisable shortcuts	http://bowtieapp.com/
Box Drive	Client for the Box cloud storage service	https://www.box.com/drive
Box Tools	Create and edit any file directly from a web browser	https://www.box.com/resources/downloads
Boxcryptor	Tool to encrypt files and folders in various cloud storage services	https://www.boxcryptor.com/en/
Boxy for Calendar	Gmail, Calendar, Keep and Contacts apps	https://www.boxysuite.com/
Boxy for Contacts	Gmail, Calendar, Keep and Contacts apps	https://www.boxysuite.com/
Boxy for Gmail	Gmail, Calendar, Keep and Contacts apps	https://www.boxysuite.com/
Boxy for Keep	Gmail, Calendar, Keep and Contacts apps	https://www.boxysuite.com/
Boxy Suite	Gmail, Calendar, Keep and Contacts apps	https://www.boxysuite.com/
Brain.fm	Desktop client for brain.fm	https://www.brain.fm/download
Bramble	Password manager	https://bramble.sh/
Brave	Web browser focusing on privacy	https://brave.com/
Brave Beta	Web browser focusing on privacy	https://brave.com/download-beta/
Brave Browser	Web browser focusing on privacy	https://brave.com/
Brave Browser Beta	Web browser focusing on privacy	https://brave.com/download-beta/
Brave Browser Nightly	Web browser focusing on privacy	https://brave.com/download-nightly/
Brave Nightly	Web browser focusing on privacy	https://brave.com/download-nightly/
Brave Origin	Privacy-focused web browser	https://brave.com/origin
Brave Origin Beta	Privacy-focused web browser	https://brave.com/origin/#beta
Brave Origin Nightly	Privacy-focused web browser	https://brave.com/origin/#nightly
BreakTimer	Tool to manage periodic breaks	https://breaktimer.app/
Breitbandmessung	Official internet speed test from the German Bundesnetzagentur	https://www.breitbandmessung.de/
Brew Services Menubar	Menu item for starting and stopping homebrew services	https://github.com/andrewn/brew-services-menubar
Brewlet	Missing menulet for Homebrew	https://github.com/zkokaja/Brewlet
BrewServicesMenubar	Menu item for starting and stopping homebrew services	https://github.com/andrewn/brew-services-menubar
brewtarget	Beer recipe creation tool	https://www.brewtarget.beer/
brewtarget_5.1.1_MacOS	Beer recipe creation tool	https://www.brewtarget.beer/
Brewy	Simple Homebrew GUI	https://github.com/starhaven-io/Brewy
Bria	Softphone application	https://www.counterpath.com/bria-solo/
Bricksmith	Virtual Lego modelling	https://bricksmith.sourceforge.io/
Bricksmith/Bricksmith	Virtual Lego modelling	https://bricksmith.sourceforge.io/
BrickStore	BrickLink offline management tool	https://www.brickstore.dev/
Bridge	3D asset manager	https://quixel.com/
Bright VPN	VPN service	https://brightvpn.com/
BrightAuthor:connected	Configurator and manager for BrightSign devices	https://www.brightsign.biz/resources/software-downloads/
Brightness Sync	Utility to synchronise the brightness of LG UltraFine display(s)	https://github.com/OCJvanDijk/Brightness-Sync
BrightVPN	VPN service	https://brightvpn.com/
brilliant	AI-native design tool	https://brilliant.design/
Brilliant	AI-native design tool	https://brilliant.design/
Brisk	App for submitting radars	https://github.com/br1sk/brisk
Brisync	Utility to automatically control the brightness of external displays	https://github.com/czarny/Brisync/
Broadcast Using This Tool	Shoutcast and Icecast streaming client	https://danielnoethen.de/butt/
Brooklyn	Screen saver based on animations presented during Apple Special Event Brooklyn	https://github.com/pedrommcarrasco/Brooklyn
Browser Actions	Shortcuts for your browser	https://actions.work/browser-actions/
Browser Deputy	Command palette in any application	https://anybox.ltd/browser-deputy
BrowserOS	Open-source agentic browser	https://www.browseros.com/
Browserosaurus	Open-source browser prompter	https://github.com/will-stone/browserosaurus
BrowserStack Local Testing	Test localhost and staging websites	https://www.browserstack.com/
BrowserStackLocal	Test localhost and staging websites	https://www.browserstack.com/
Bruno	Open source IDE for exploring and testing APIs	https://www.usebruno.com/
BTCPayServer Vault	App that allows web applications to access a hardware wallet	https://github.com/btcpayserver/BTCPayServer.Vault
Buckets	Budgeting tool	https://www.budgetwithbuckets.com/
Buckets Beta	Budgeting tool	https://www.budgetwithbuckets.com/
Bugdom	Bug-themed 3D action/adventure game from Pangea Software	https://jorio.itch.io/bugdom
Bugdom 2	Bug-themed 3D action/adventure game sequel from Pangea Software	https://jorio.itch.io/bugdom2
build/headset-darwin-arm64/Headset	Music player powered by YouTube and Reddit	https://headsetapp.co/
BuildSettingExtractor	Xcode build settings extractor	https://github.com/dempseyatgithub/BuildSettingExtractor
Bunch	Automation tool	https://bunchapp.co/
Burn	CD burning application	https://burn-osx.sourceforge.io/
Burn.localized/Burn	CD burning application	https://burn-osx.sourceforge.io/
Burp Suite	Web security testing toolkit	https://portswigger.net/burp/
Burp Suite Community Edition	Web security testing toolkit	https://portswigger.net/burp/
BusyCal	Calendar software focusing on flexibility and reliability	https://busymac.com/busycal/index.html
BusyContacts	Contact manager focusing on efficiency	https://www.busymac.com/busycontacts/index.html
Butler	Arrange your tasks in a customisable configuration	https://manytricks.com/butler/
butt	Shoutcast and Icecast streaming client	https://danielnoethen.de/butt/
Buttercup	Javascript Secrets Vault - Multi-Platform Desktop Application	https://buttercup.pw/
ButterKit	App Store screenshots editor	https://butterkit.app/
ButterKit-Direct-2.4.06-macOS	App Store screenshots editor	https://butterkit.app/
Buzz	Workspace for humans and AI agents	https://github.com/block/buzz
BZFlag	3D multi-player tank battle game	https://www.bzflag.org/
BZFlag-2.4.30	3D multi-player tank battle game	https://www.bzflag.org/
Bépo layout	Keyboard layout designed to facilitate input of French and computer languages	https://bepo.fr/
Cabal	Desktop client for the chat platform Cabal	https://cabal.chat/
cables	Visual programming tool	https://github.com/cables-gl/cables_electron
Cables	Visual programming tool	https://github.com/cables-gl/cables_electron
Cacher	Code snippet organiser	https://www.cacher.io/
CAD Assistant	3D viewer and converter for CAD and mesh files	https://www.opencascade.com/products/cad-assistant/
Cadran	Desktop clock rendered behind your icons	https://cadranapp.com/
CADReader	CAD drawing viewer	https://cad.everdrawing.com/
CAD快速看图	CAD drawing viewer	https://cad.everdrawing.com/
Caffeine	Utility that prevents the system from going to sleep	https://intelliscapesolutions.com/apps/caffeine
Cahier	Knowledge base with native support for research	https://getcahier.com/
Caido	Web security auditing toolkit	https://caido.io/
cakebrewjs	Homebrew GUI app	https://sourceforge.net/projects/cakebrewjs/
Cakebrewjs	Homebrew GUI app	https://sourceforge.net/projects/cakebrewjs/
CalcService	Enter calculations into any Service-aware app	https://www.devontechnologies.com/apps/freeware
CalDigit Thunderbolt Docking Station Utility	Utility to disconnect all drives connected to a Caldigit dock	https://www.caldigit.com/
CalDigit Thunderbolt Station USB Charging & SuperDrive Support Driver	Improved Apple device support	https://www.caldigit.com/
CalDigit USB Hub Support Driver	Apple SuperDrive, Apple Keyboard, and Improved iPhone/iPad Charging	https://www.caldigit.com/
Calendar 366 II	Menu bar calendar for events and reminders	https://nspektor.com/calendar366/mac
Calendr	Menu bar calendar	https://github.com/pakerwreah/Calendr
CalHash	Calculate and compare file checksums	https://www.titanium-software.fr/en/calhash.html
calibre	E-books management software	https://calibre-ebook.com/
calibrite PROFILER	Display calibration software for Calibrite, ColorChecker and X-Rite devices	https://calibrite.com/calibrite-profiler/
Calmly Writer	Word processor with markdown formatting and select themes	https://calmlywriter.com/
Calyx	Terminal for running and supervising coding agents	https://github.com/yuuichieguchi/Calyx
CAM Editor	XML editor	https://sourceforge.net/projects/camprocessor/
CAMEd-3.2.2/CAMed	XML editor	https://sourceforge.net/projects/camprocessor/
CameraBag	Filter and edit photos	https://nevercenter.com/camerabag/photo/
CameraBag Photo	Filter and edit photos	https://nevercenter.com/camerabag/photo/
CameraController	Control USB Cameras from an app	https://github.com/Itaybre/CameraController/
Camo Studio	Use your phone as a high-quality webcam with image tuning controls	https://reincubate.com/camo/
Camtasia	Screen recorder and video editor	https://www.techsmith.com/video-editor.html
Camunda Modeler	Workflow and Decision Automation Platform	https://camunda.com/
Canario	Terminal emulator	https://rioterm.com/canario
Candy Crisis	Tile matching puzzle/action game	https://candycrisis.sourceforge.net/
CandyBar	Tool to manage file icons	https://blog.iconfactory.com/2022/04/candybar-sugar-free-edition/
Canon EOS Utility	Communication with Canon EOS cameras	https://app.ssw.imaging-saas.canon/app/en/eu.html
Canon My Image Garden	Photo editing and printing tool	https://support-asia.canon-asia.com/?personal
Canon PIXMA driver	CUPS driver for Canon PIXMA MG2500 series	https://ij.manual.canon/ij/webmanual/Manual/M/MG2500%20series/EN/CNT/Top.html
Canon UFR II/UFRII LT/LIPSLX/CARPS2 Printer Driver	Printer driver for Canon imageRUNNER office printers	https://oip.manual.canon/USRMA-3844-zz-DR-enUV/
Canva	Design tool	https://www.canva.com/
Cap	Screen recording software	https://cap.so/
Capacities	App to write and organise your ideas	https://capacities.io/
CapCut	Video editing and image design platform	https://www.capcut.com/
Caprine	Elegant Facebook Messenger desktop app	https://github.com/sindresorhus/caprine
CapsLockNoDelay	Removes delay when pressing the caps lock	https://github.com/gkpln3/CapsLockNoDelay
Capsomnia	Utility that keeps your computer awake with the lid closed	https://github.com/fuji-mak/Capsomnia/
Captain	Manage Docker containers from the menu bar	https://getcaptain.co/
Captain Plugins Epic	Music theory tool	https://mixedinkey.com/get-captain-epic/
Captain's Deck	Dual-pane file manager inspired by Norton Commander	https://captains-deck.com/
Captin	Tool to show caps lock status	https://github.com/cool8jay/public
Capto	Screen capture/recorder and video editor	https://www.globaldelight.com/capto/
Carbide Create	CAD/CAM software for CNC routers	https://carbide3d.com/carbidecreate/
Carbon Copy Cloner	Hard disk backup and cloning utility	https://bombich.com/
Carbon Copy Cloner 6	Hard disk backup and cloning utility	https://bombich.com/
Cardhop	Contacts manager	https://flexibits.com/cardhop
Cardinal	Fastest file searching tool	https://github.com/cardisoft/Cardinal
Cardinal Search	Fastest file searching tool	https://github.com/cardisoft/Cardinal
Cardo Update	Update Packtalk and Freecom motorcycle intercoms	https://www.cardosystems.com/download-cardo-updater/
cardPresso	Card software tool for professional card production	https://www.cardpresso.com/
Cartes du Ciel	Draw sky charts	https://www.ap-i.net/skychart/
CashNotify	Monitor your Stripe and Paypal accounts from your menubar	https://cashnotify.com/
CaskHub	Native GUI for Homebrew casks	https://caskhub.app/
Castr	Desktop application for controlling Castr streaming platform	https://castr.io/
castr	Desktop application for controlling Castr streaming platform	https://castr.io/
Catch	Broadcatching made easy	https://www.giorgiocalderolla.com/catch.html
Cate	Infinite zoomable canvas with editor, terminal, and browser panels	https://cate.cero-ai.com/
Catlight	Action center for developers	https://catlight.io/
CatLight	Action center for developers	https://catlight.io/
Cavalry	Procedural motion design and animation software	https://cavalry.studio/
Cave Story	Action-adventure game reminiscent of classic 8- and 16-bit games	https://www.cavestory.org/
CC Pocket	Remote client for Codex and Claude coding agents	https://k9i-0.github.io/ccpocket/install/
CC Switch	Configuration manager for AI coding agents	https://github.com/farion1231/cc-switch
CCMenu	Application to monitor continuous integration servers	https://ccmenu.org/
ccStudio	Color management tool for accurate monitor and printer calibration	https://calibrite.com/us/software-downloads/
CCtalk	Real-time interactive education platform	https://www.cctalk.com/download/
cd to	Finder Toolbar app to open the current directory in the Terminal	https://github.com/jbtule/cdto
cd_to	Finder Toolbar app to open the current directory in the Terminal	https://github.com/ealeksandrov/cdto
cd_to_2_8/terminal/cd_to	Finder Toolbar app to open the current directory in the Terminal	https://github.com/ealeksandrov/cdto
Celestia	Space simulation for exploring the universe in three dimensions	https://celestiaproject.space/
CellProfiler	Open-source application for biological image analysis	https://cellprofiler.org/
CEmu	TI-84 Plus CE and TI-83 Premium CE calculator emulator	https://ce-programming.github.io/CEmu/
Cerebro	Open-source launcher	https://cerebroapp.vercel.app/
CERNBox Client	Cloud storage for CERN users	https://cernbox.web.cern.ch/cernbox/
Chai	Utility to prevent the system from going to sleep	https://github.com/lvillani/chai
chaiNNer	Flowchart-based image processing GUI	https://chainner.app/
Chalk	Calculator software	https://www.chachatelier.fr/chalk/
Change Vision Astah Professional	Software modelling tool	https://astah.net/editions/professional
Change Vision Astah UML	UML diagramming tool with mind mapping	https://astah.net/products/astah-uml/
Changes	Git GUI	https://github.com/maoyama/Changes
Channel Works	AI Business OS for customer support, analytics, collaboration, and marketing	https://channel.io/
Charles	Web debugging Proxy application	https://www.charlesproxy.com/
Charmstone	App launcher and switcher	https://charmstone.app/
ChatALL	Concurrently chat with ChatGPT, Bing Chat, Bard, Claude, ChatGLM and more	https://github.com/sunner/ChatALL
Chatbox	Desktop app for GPT-4 / GPT-3.5 (OpenAI API)	https://chatboxai.app/en
ChatGLM	Desktop client for the ChatGLM AI chatbot	https://chatglm.cn/
ChatGPT	OpenAI's official ChatGPT desktop app	https://chatgpt.com/
Chatgpt	Menu bar application for ChatGPT	https://github.com/vincelwt/chatgpt-mac
ChatGPT Atlas	OpenAI's official browser with ChatGPT built in	https://chatgpt.com/atlas
ChatGPT Classic	OpenAI's previous ChatGPT desktop app	https://chatgpt.com/
ChatGPT for Mac	Menu bar application for ChatGPT	https://github.com/vincelwt/chatgpt-mac
ChatMate for WhatsApp	Extension app WhatsApp	https://chatmate.io/
chatterino	Chat client for https://twitch.tv	https://chatterino.com/
Chatterino	Chat client for https://twitch.tv	https://chatterino.com/
Chatty	Twitch chat client	https://chatty.github.io/
ChatWise	AI chatbot for many LLMs	https://chatwise.app/
Chatwork	Group chat software	https://www.chatwork.com/
ChatWork	Group chat software	https://www.chatwork.com/
CheatSheet	Tool to list all active shortcuts of the current application	https://www.mediaatelier.com/CheatSheet/
checkra1n	Jailbreak for iPhone 5s through iPhone X, iOS 12.0 and up	https://checkra.in/
Cheetah3D	3D modelling, rendering and animation software	https://www.cheetah3d.com/
Chef Workstation	All-in-one installer for the tools you need to manage your Chef infrastructure	https://docs.chef.io/workstation/
ChemDoodle	2D chemical drawing, publishing and informatics	https://www.ichemlabs.com/
ChemDoodle 2D	2D chemical drawing, publishing and informatics	https://www.ichemlabs.com/
Cherry Studio	Desktop client that supports multiple LLM providers	https://www.cherry-ai.com/
ChessX	Chess database	https://chessx.sourceforge.io/
Chia	GUI Python implementation for the Chia blockchain	https://www.chia.net/
Chia Blockchain	GUI Python implementation for the Chia blockchain	https://www.chia.net/
Chiaki	PlayStation remote play client	https://git.sr.ht/~thestr4ng3r/chiaki
Chime	Text and code editor	https://www.chimehq.com/
chipmunk	Log analysis tool	https://github.com/esrlabs/chipmunk/
Chipmunk Log Analyzer & Viewer	Log analysis tool	https://github.com/esrlabs/chipmunk/
Chiri	CalDAV-compatible task management app	https://github.com/chiriapp/chiri
CHITUBOX	3D printing slicer software	https://www.chitubox.com/
Choice Financial Terminal	Financial information acquisition platform	https://choice.eastmoney.com/
Choice金融终端	Financial information acquisition platform	https://choice.eastmoney.com/
Choosy	Open links in any browser	https://choosy.app/
Choragus	Sonos controller	https://github.com/scottwaters/Choragus
ChordPotion	MIDI plug-in to transform chords into riffs and melodies	https://feelyoursound.com/chordpotion/
Chrome Remote Desktop	Remotely access another computer through the Google Chrome browser	https://chrome.google.com/webstore/detail/chrome-remote-desktop/inomeogfingihgjfjlpeplalcfajhgai
chrome-mac/Chromium	Free and open-source web browser	https://www.chromium.org/Home
ChromeDriver	Automated testing of webapps for Google Chrome	https://chromedriver.chromium.org/
Chromium	Google Chromium, sans integration with Google	https://ungoogled-software.github.io/
Chromium-Gost	Browser based on Chromium with support for GOST cryptographic algorithms	https://github.com/deemru/Chromium-Gost
ChronoAgent	Remote file sharing for ChronoSync	https://www.econtechnologies.com/
Chronoid	Automatic time tracker and productivity insights app	https://chronoid.app/
Chronos	Desktop client for JIRA and Trello	https://github.com/web-pal/chronos-timetracker
Chronos Timetracker	Desktop client for JIRA and Trello	https://github.com/web-pal/chronos-timetracker
ChronoSync	Synchronisation and backup tool	https://www.econtechnologies.com/
ChronyControl	Install and configure chronyd	https://whatroute.net/chronycontrol.html
Chrysalis	Graphical configurator for Kaleidoscope-powered keyboards	https://github.com/keyboardio/Chrysalis
Cilicon	Self-Hosted ephemeral CI on Apple Silicon	https://github.com/traderepublic/Cilicon
Cinc Workstation	Installer for Chef infrastructure management tools	https://cinc.sh/start/workstation/
Cinch	Window management tool	https://www.irradiatedsoftware.com/cinch/
Cinco	Generator-driven Eclipse IDE for domain-specific graphical modelling tools	https://cinco.scce.info/
Cinder	C++ library for creative coding	https://libcinder.org/
Cinderella	Interactive Geometry Software	https://cinderella.de/
Cinebench	Hardware benchmarking utility	https://www.maxon.net/products/cinebench/
CircuitJS1	Electronic circuit simulator	https://www.falstad.com/circuit/
Cirrus	Inspector for iCloud Drive folders	https://eclecticlight.co/cirrus-bailiff/
cirrus116/Cirrus	Inspector for iCloud Drive folders	https://eclecticlight.co/cirrus-bailiff/
Cisco Jabber	Jabber client from Cisco	https://www.webex.com/downloads/jabber.html
Cisco Proximity	Content sharing and video conference system control	https://proximity.cisco.com/
Cisdem Data Recovery	Recover lost data	https://www.cisdem.com/data-recovery-mac.html
Cisdem Document Reader	Document reader to open and view Windows-based files	https://www.cisdem.com/document-reader-mac.html
Cisdem Duplicate Finder	Duplicate Finder	https://www.cisdem.com/duplicate-finder.html
Cisdem PDF Converter OCR	PDF Converter with OCR capability	https://www.cisdem.com/pdf-converter-ocr-mac.html
Citrix Workspace	Managed desktop virtualization solution	https://docs.citrix.com/en-us/citrix-workspace
CKAN	Mod management solution for Kerbal Space Program	https://github.com/KSP-CKAN/CKAN
ClamXAV	Anti-virus and malware scanner	https://www.clamxav.com/
Clarc	Desktop client for Claude Code	https://github.com/ttnear/Clarc
Clarify	Autonomous CRM	https://clarify.ai/
Clariti	Focus and relaxation soundscapes	https://clariti.io/
Clash Mi	Another Mihomo GUI based on Flutter	https://github.com/KaringX/clashmi
Clash Party	Another Mihomo GUI	https://clashparty.org/
Clash Verge	Continuation of Clash Verge - A Clash Meta GUI based on Tauri	https://clash-verge-rev.github.io/
Clash Verge Rev	Continuation of Clash Verge - A Clash Meta GUI based on Tauri	https://clash-verge-rev.github.io/
Classic Marathon	First-person shooter, first in a trilogy	https://alephone.lhowon.org/
Classic Marathon 2	First-person shooter, second in a trilogy	https://alephone.lhowon.org/
Classic Marathon Infinity	First-person shooter, third in a trilogy	https://alephone.lhowon.org/
ClassicFTP	FTP File Transfer Software	https://www.nchsoftware.com/classic/index.html
Classroom Mode for Minecraft	Classroom management app for Minecraft Education Edition	https://education.minecraft.net/
Claude	Anthropic's official Claude AI desktop app	https://claude.com/download
Claude Code	Terminal-based AI coding assistant	https://claude.com/product/claude-code
Claude DevTools	Visualise and analyse Claude Code session executions	https://github.com/matt1398/claude-devtools
Claude Status Bar	Menu bar status indicator for Claude Code	https://github.com/m1ckc3s/claude-status-bar
claude-devtools	Visualise and analyse Claude Code session executions	https://github.com/matt1398/claude-devtools
ClaudeBar	Menu bar app for monitoring AI coding assistant usage quotas	https://github.com/tddworks/ClaudeBar
Clawd on Desk	Desktop pet that reacts to AI coding agents	https://github.com/rullerzhou-afk/clawd-on-desk
CleanClip	Clipboard manager	https://cleanclip.cc/
CleanerOnePro	All-in-one Cleaner App	https://cleanerone.trendmicro.com/
CleanMyMac	Tool to remove unnecessary files and folders from disk	https://macpaw.com/cleanmymac
CleanMyMac CLI	Command-line interface for CleanMyMac	https://github.com/MacPaw/cleanmymac-cli
CleanMyMac X Chinese	Tool to remove unnecessary files and folders from disk Chinese edition	https://www.mycleanmymac.com/
CleanMyMac-X	Tool to remove unnecessary files and folders from disk Chinese edition	https://www.mycleanmymac.com/
CleanMyMac_5	Tool to remove unnecessary files and folders from disk	https://macpaw.com/cleanmymac
CleanMyMac_5_CLI	Command-line interface for CleanMyMac	https://github.com/MacPaw/cleanmymac-cli
CleanShot	Screen capturing tool	https://cleanshot.com/
CleanShot X	Screen capturing tool	https://cleanshot.com/
CleanupBuddy	Clean keyboard and trackpad	https://cleanupbuddy.app/
Clearance	Markdown viewer and editor	https://github.com/prime-radiant-inc/clearance/blob/main/apps/macos/README.md
Cleartext	Text editor	https://github.com/mortenjust/cleartext-mac
ClearVPN	VPN client	https://clearvpn.com/
clementine	Music player and library organiser	https://www.clementine-player.org/
Clementine	Music player and library organiser	https://www.clementine-player.org/
Clibor	Clipboard manager	https://chigusa-web.com/clibor-for-mac-en/
Clibor for Mac	Clipboard manager	https://chigusa-web.com/clibor-for-mac-en/
ClickCharts	Diagram and flowchart software	https://www.nchsoftware.com/
Clicker for Netflix	Best standalone Netflix player	https://www.dbklabs.com/clicker-for-netflix/
Clicker for YouTube	Standalone YouTube app	https://www.dbklabs.com/clicker-for-youtube/
ClickHouse	Column-oriented database management system	https://clickhouse.com/
ClickShare	Client for wireless screen sharing with Barco conferencing systems	https://www.barco.com/en/product/clickshare-app
ClickUp	Productivity platform for tasks, docs, goals, and chat	https://clickup.com/
Cling	Instant fuzzy finder for files including system and hidden files	https://lowtechguys.com/cling
CLion	C and C++ IDE	https://www.jetbrains.com/clion/
CLion 2026.3 EAP	CLion Early Access Program	https://www.jetbrains.com/clion/nextversion
CLion EAP	CLion Early Access Program	https://www.jetbrains.com/clion/nextversion
Clip Studio Paint	Software for drawing and painting	https://www.clipstudio.net/en
Clipaste	Clipboard history manager	https://www.ntwind.com/cross-platform/clipaste.html
ClipBook	Clipboard history app	https://clipbook.app/
ClipGrab	Downloads videos and audio from websites	https://clipgrab.org/
CLIPS IDE	Tool for building expert systems	https://www.clipsrules.net/
Clipy	Clipboard extension app	https://clipy-app.com/
cljstyle	Tool for formatting Clojure code	https://github.com/greglook/cljstyle
CLK	Latency-hating emulator of 8- and 16-bit platforms	https://github.com/TomHarte/CLK
Cloak	VPN and encryption software	https://encrypt.me/
Clock Bar	Macbook | Clock, right on the touch bar	https://github.com/nihalsharma/Clock-Bar/
Clock Signal	Latency-hating emulator of 8- and 16-bit platforms	https://github.com/TomHarte/CLK
Clock.saver screensaver	Screensavers inspired by Braun watches	https://github.com/soffes/Clock.saver
Clocker	Menu bar timezone tracker and compact calendar	https://abhishekbanthia.com/clocker
Clockify	Time tracking tool for agencies and freelancers	https://clockify.me/mac-time-tracking
Clockify Desktop	Time tracking tool for agencies and freelancers	https://clockify.me/mac-time-tracking
Clone Hero	Guitar Hero clone	https://clonehero.net/
Clop	Image, video and clipboard optimiser	https://lowtechguys.com/clop/
Cloud PBX	Cloud-based telephone system	https://geschaeftskunden.telekom.de/internet-dsl/tarife/festnetz-internet-dsl/companyflex/cloud-pbx
Cloud PBX 2.0	Cloud-based telephone system	https://geschaeftskunden.telekom.de/internet-dsl/tarife/festnetz-internet-dsl/companyflex/cloud-pbx
Cloud189	Public cloud storage service	https://cloud.189.cn/web/static/download-client/index.html
Cloudash	Monitoring and troubleshooting for serverless architectures	https://cloudash.dev/
CloudCompare	3D point cloud and mesh processing software	https://www.danielgm.net/cc/
Cloudflare WARP	Free app that makes your Internet safer	https://cloudflarewarp.com/
CloudMounter	Mounts cloud storages as local discs	https://mac.eltima.com/mount-cloud-drive.html
CloudNet	Enterprise-level meshVPN cloud service	https://cloudnet.world/
CloudNet for Mac client	Enterprise-level meshVPN cloud service	https://cloudnet.world/
CloudPouch	AWS cloud FinOps tool	https://cloudpouch.dev/
Cloudup	Instantly and securely share anything	https://cloudup.com/download
Clover Chord Systems	Master rhythm and chord notation editor	https://clover-japon.com/en/
Clover Configurator	Clover EFI bootloader configuration helper	https://mackie100projects.altervista.org/clover-configurator/
CMake	Family of tools to build, test and package software	https://cmake.org/
cmd	AI assistant for development in Xcode	https://getcmd.dev/
CmdTap	Adds other functions to Task Switcher	https://www.yingdev.com/projects/cmdtap
cmpxat	Command tool to compare all the extended attributes (xattrs) between two files	https://eclecticlight.co/xattred-sandstrip-xattr-tools/
CMTrace Open	Log viewer for ConfigMgr, Intune, and Windows diagnostic logs	https://cmtraceopen.com/
cmux	Ghostty-based terminal with vertical tabs and notifications for AI coding agents	https://www.cmux.dev/
CNCjs	Interface for CNC milling controllers	https://cnc.js.org/
CNSjs	Interface for CNC milling controllers	https://cnc.js.org/
cockatrice	Virtual tabletop for multiplayer card games	https://cockatrice.github.io/
Cockatrice	Virtual tabletop for multiplayer card games	https://cockatrice.github.io/
Cocktail	Cleans, repairs and optimises computer systems	https://www.maintain.se/cocktail/
Cocoa Packet Analyzer	Network protocol analyzer and packet sniffer	https://www.tastycocoabytes.com/
CocoaPacketAnalyzer	Network protocol analyzer and packet sniffer	https://www.tastycocoabytes.com/
CocoaRestClient	App for testing HTTP/REST endpoints	https://mmattozzi.github.io/cocoa-rest-client/
coconutBattery	Tool to show live information about the batteries in various devices	https://www.coconut-flavour.com/coconutbattery/
coconutID	Shows a Macs or iPhones manufacturing date	https://www.coconut-flavour.com/coconutid/
Code Composer Studio (CCS)	Integrated development environment	https://www.ti.com/tool/CCSTUDIO
CodeBolt	AI Powered Code Editor	https://codebolt.ai/
CodeBuddy	AI-powered adaptive IDE	https://www.codebuddy.ai/ide/
CodeBuddy CN	AI-powered adaptive IDE (Chinese version)	https://copilot.tencent.com/ide/
CodeEdit	Code editor	https://www.codeedit.app/
CodeExpander	Text expansion, screenshot & annotation, and clipboard management tool	https://codeexpander.com/
CodeKit	App for building websites	https://codekitapp.com/
codelite	IDE for C, C++, PHP and Node.js	https://codelite.org/
CodeLite	IDE for C, C++, PHP and Node.js	https://codelite.org/
CodeQL	Semantic code analysis engine	https://codeql.github.com/
CodeRabbit	AI code review CLI	https://www.coderabbit.ai/cli
CodeRunner	Multi-language programming editor	https://coderunnerapp.com/
Codeship Jet	CI/CD as a service	https://docs.cloudbees.com/docs/cloudbees-codeship/latest/
Codespace	Code snippet manager	https://codespace.app/
Codex	OpenAI's Codex desktop app for managing coding agents	https://openai.com/codex
Codex Monitor	Monitor Codex activity	https://www.codexmonitor.app/
CodexBar	Menu bar usage monitor for Codex and Claude	https://codexbar.app/
codexia	GUI and toolkit for Codex CLI and Claude Code	https://github.com/milisp/codexia
Codexia	GUI and toolkit for Codex CLI and Claude Code	https://github.com/milisp/codexia
CodexMonitor	Monitor Codex activity	https://www.codexmonitor.app/
Codux	React IDE built to visually edit component styling and layouts	https://www.codux.com/
Coffitivity Offline	Ambient sound generator	https://coffitivity-offline.siwalik.in/
Cog	Audio player	https://cog.losno.co/
Coherence X	Turn websites into apps	https://bzgapps.com/coherence
Coin Wallet	Digital currency wallet	https://coin.space/
Coinomi Wallet	Securely store, manage and exchange many blockchain assets	https://www.coinomi.com/en/
ColaMD	Markdown editor	https://colamd.com/
Cold Turkey	Block websites, games and applications	https://getcoldturkey.com/
Colemak-DH Keyboard Layout	Colemak mod for more comfortable typing (DH variant)	https://colemakmods.github.io/mod-dh/
Colemak-DHk Keyboard Layout	Colemak mod for more comfortable typing (DHk variant)	https://colemakmods.github.io/mod-dh/
Color Studio	Coherent colour scheme creator	https://github.com/bernaferrari/color-studio
Color Studio/Color Studio	Coherent colour scheme creator	https://github.com/bernaferrari/color-studio
ColorChecker Camera Calibration	Software to build custom camera profiles	https://calibrite.com/photo-target
Colorpicker	Get and save colour codes	https://colorpicker.fr/
ColorSnapper 2	Colour picker	https://colorsnapper.com/
ColorSnapper2	Colour picker	https://colorsnapper.com/
ColorWell	Colour picker and colour palette generator	https://colorwell.sweetpproductions.com/
Colour Contrast Analyser	Colour contrast checker	https://www.tpgi.com/color-contrast-checker/
Combine PDFs	PDF file editor	https://www.monkeybreadsoftware.de/Software/CombinePDFs.shtml
Comet	Web browser with integrated AI assistant	https://www.perplexity.ai/comet
Comfy Desktop	Node-based image, video and audio generator	https://comfy.org/
ComicTagger	Metadata editor for digital comics	https://github.com/davide-romanini/comictagger
Command Pad	Start and stop command-line tools and monitor the output	https://github.com/supnate/command-pad
Command-Tab Plus	Keyboard-centric application and window switcher	https://noteifyapp.com/command-tab-plus/
Command-Tab Plus 2	Keyboard-centric application and window switcher	https://noteifyapp.com/command-tab-plus/
Commander	AI agent operator	https://thecommander.app/
Commander One	Two-panel file manager	https://mac.eltima.com/file-manager.html
CommandPost	Workflow enhancements for Final Cut Pro	https://commandpost.io/
CommandQ	Never accidentally quit an app again	https://commandqapp.com/
Companion	Streamdeck extension and emulation software	https://bitfocus.io/companion
Companion Satellite	Satellite connection client for Bitfocus Companion	https://bitfocus.io/companion-satellite
Company Portal	App to manage access to corporate apps, data, and resources	https://docs.microsoft.com/en-us/mem/intune/user-help/enroll-your-device-in-intune-macos-cp
Components	Manager and updater for Novation hardware	https://novationmusic.com/components/
Composercat	Graphical interface for Composer (PHP)	https://getcomposercat.com/
Compositor	WYSIWYG LaTeX editor	https://compositorapp.com/
Comprehensive Kerbal Archive Network	Mod management solution for Kerbal Space Program	https://github.com/KSP-CKAN/CKAN
Conar	AI-powered database and data management tool	https://conar.app/
Concept2 Utility	Utilities for the Concept2 Performance Monitor	https://www.concept2.com/support/software/utility
Conductor	Claude code parallelisation	https://conductor.build/
Conduit	Psiphon network proxy tool	https://conduit.psiphon.ca/
Confectionery	Website screenshot tool	https://confectioneryapp.com/
Conferences	App to watch conference videos	https://github.com/zagahr/Conferences.digital
Conferences.digital	App to watch conference videos	https://github.com/zagahr/Conferences.digital
Confluent CLI	Enables developers to manage Confluent Cloud or Confluent Platform	https://docs.confluent.io/confluent-cli/current/overview.html
Connect Fonts	Font manager	https://www.extensis.com/products/connect
Connect IQ SDK Manager	Manage SDKs and download device definitions for Garmin Connect IQ development	https://developer.garmin.com/connect-iq/sdk/
connectiq-sdk-mac-9.2.0-2026-06-09-92a1605b2/bin/ConnectIQ	Build wearable experiences for Garmin devices and sensors with ConnectIQ SDK	https://developer.garmin.com/connect-iq/
connectiq-sdk-mac-9.2.0-2026-06-09-92a1605b2/bin/MonkeyMotion	Build wearable experiences for Garmin devices and sensors with ConnectIQ SDK	https://developer.garmin.com/connect-iq/
ConnectMeNow	Mount network shares quick and easy	https://www.tweaking4all.com/os-tips-and-tricks/macosx-tips-and-tricks/connectmenow-v4/
ConnectMeNow4	Mount network shares quick and easy	https://www.tweaking4all.com/os-tips-and-tricks/macosx-tips-and-tricks/connectmenow-v4/
Console	Replacement for console application	https://github.com/macmade/Console
Consul	Tool for service discovery, monitoring and configuration	https://www.consul.io/
Container PS	App to show all docker images	https://github.com/Toinane/container-ps
Context	MCP client and inspector	https://www.contextmcp.app/
Contexts	Allows switching between application windows	https://contexts.co/
contour	Terminal emulator	https://github.com/contour-terminal/contour/
Contour	Terminal emulator	https://github.com/contour-terminal/contour/
Contraste	Check accessibility of text against Web Content Accessibility Guidelines	https://contrasteapp.com/
Cookie	Protection from tracking and online profiling	https://sweetpproductions.com/
Cool Retro Term	Terminal emulator mimicking the old cathode display	https://github.com/Swordfish90/cool-retro-term
cool-retro-term	Terminal emulator mimicking the old cathode display	https://github.com/Swordfish90/cool-retro-term
CoolTerm	Serial port terminal	https://freeware.the-meiers.org/
Copilot	Track and budget money	https://copilot.money/
Copilot for Xcode	Xcode extension for GitHub Copilot	https://github.com/intitni/CopilotForXcode
CopyClip	Clipboard manager	https://fiplab.com/apps/copyclip-for-mac
CopyClip 2	Clipboard manager	https://fiplab.com/apps/copyclip-for-mac
CopyQ	Clipboard manager with advanced features	https://hluk.github.io/CopyQ/
copytranslator	Tool that translates text in real-time while copying	https://copytranslator.github.io/
CopyTranslator	Tool that translates text in real-time while copying	https://copytranslator.github.io/
Coq Platform	Formal proof management system	https://rocq-prover.org/
Coq-Platform~8.20~2025.01	Formal proof management system	https://rocq-prover.org/
Core Location CLI	Prints location information from CoreLocation	https://github.com/fulldecent/corelocationcli
Core Tunnel	SSH tunnel manager	https://codinn.com/tunnel/
CoreLocationCLI	Prints location information from CoreLocation	https://github.com/fulldecent/corelocationcli
Cork	GUI companion app for Homebrew	https://corkmac.app/
CornerCal	Clock app	https://github.com/ekreutz/CornerCal
Cornerstone	Subversion client	https://cornerstone.assembla.com/
Corona Tracker	Coronavirus tracker app with maps and charts	https://coronatracker.samabox.com/
CoScreen	Collaboration tool with multi-user screen sharing	https://www.coscreen.co/
CotEditor	Plain-text editor for web pages, program source codes and more	https://coteditor.com/
coterm	CLI tool by Datadog for terminal recording and approvals	https://docs.datadoghq.com/coterm/
Cotypist	System-wide AI autocomplete	https://cotypist.app/
Couchbase Lite (Community Edition)	Couchbase Lite Libraries for C and C++ (Community Edition)	https://docs.couchbase.com/couchbase-lite/current/
Couchbase Lite (Enterprise Edition)	Couchbase Lite Libraries for C and C++ (Enterprise Edition)	https://docs.couchbase.com/couchbase-lite/current/
Couchbase Server	Distributed NoSQL cloud database	https://www.couchbase.com/
Couleurs	Grab and tweak the colours you see on your screen	https://couleursapp.com/
CoverLoad	Download high quality artwork for movies, music albums, and more	https://coverloadapp.com/
CPU Info	Provides information about device hardware and software	https://github.com/kamgurgul/cpu-info
CPU-Info	Provides information about device hardware and software	https://github.com/kamgurgul/cpu-info
cpuinfo	CPU meter menu bar app	https://github.com/yusukeshib/cpuinfo
Craft	Native document editor	https://www.craft.do/
Craft Agents	AI assistant for connecting and working across data sources	https://agents.craft.do/
CrashPlan	Backup and recovery software	https://www.crashplan.com/
Creality Print	Slicer and cloud services for some Creality FDM 3D printers	https://www.creality.com/pages/download-software
Creality Slicer	Slicer for all Creality FDM 3D printers	https://www.creality.com/download/
Creative	Control panel for the Creative hardware	https://support.creative.com/
Crescendo	Real time event viewer	https://github.com/SuprHackerSteve/Crescendo
Crestron AirMedia	Touchless presentation and collaboration software	https://www.crestron.com/microsites/airmedia-mobile-wireless-hd-presentations
Crisp	Menu bar display manager: DDC brightness, HiDPI, presets, virtual displays	https://crispmac.app/
Cro-Mag Rally	Prehistoric-themed 3D racing game from Pangea Software	https://jorio.itch.io/cromagrally
CrossOver	Tool to run Windows software	https://www.codeweavers.com/products/crossover-mac/
CrossPaste	Universal Pasteboard Across Devices	https://crosspaste.com/en/
Crunch	PNG image optimiser	https://github.com/chrissimpkins/Crunch
CrushFTP	File transfer server	https://www.crushftp.com/
Crypter	Encryption software	https://github.com/HR/Crypter
Crypto Native App NG	Encrypts and signs data on your computer and communicates with browser extension	https://download.tescosw.cz/crypto/en/
Cryptomator	Multi-platform client-side cloud file encryption tool	https://cryptomator.org/
Cryptr	GUI for Hashicorp's Vault	https://github.com/adobe/cryptr
Crystal	Run multiple Claude Code instances simultaneously using git worktrees	https://github.com/stravu/crystal
CrystalDiffract	Powder diffraction software including phase ID & Rietveld refinement	https://crystalmaker.com/crystaldiffract/index.html
CrystalFetch	UI for creating Windows installer ISO from UUPDump	https://github.com/TuringSoftware/CrystalFetch
Crystalfetch	UI for creating Windows installer ISO from UUPDump	https://github.com/TuringSoftware/CrystalFetch
CrystalMaker	Energy modelling for crystal & molecular structures	https://crystalmaker.com/crystalmaker/index.html
CrystalViewer	Interactive galleries of 3D crystal & molecular structures	https://crystalmaker.com/crystalviewer/index.html
cTiVo	Download and convert Tivo shows	https://github.com/mackworth/cTiVo
Cube 2: Sauerbraten	Multiplayer & singleplayer first person shooter	http://sauerbraten.org/
CubicSDR	Cross-platform software-defined radio application	https://cubicsdr.com/
Cumulus	SoundCloud player that lives in the menu bar	https://gillesdemey.github.io/Cumulus/
Cura	3D printer and slicing GUI	https://ultimaker.com/software/ultimaker-cura
Cura LulzBot Edition	3D printing solution	https://lulzbot.com/support/cura
Curio	Note-taking and organisation tool	https://zengobi.com/curio/
Curiosity	SwiftUI Reddit client	https://github.com/Dimillian/RedditOS
CurseForge	Download and manage your addons and mods	https://curseforge.overwolf.com/
Cursor	Write, edit, and chat about your code with AI	https://www.cursor.com/
Cursor CLI	Command-line agent for Cursor	https://cursor.com/
Cursorcerer	Preference Pane for controlling cursor hiding	https://doomlaser.com/cursorcerer-hide-your-cursor-at-will/
CursorSense	Adjusts cursor acceleration and sensitivity	https://plentycom.jp/en/cursorsense/
Cursr	Customise mouse movements between multiple displays	https://cursr.app/
CustomShortcuts	Customise menu item keyboard shortcuts	https://www.houdah.com/customShortcuts/
Cutter	Reverse engineering platform powered by Rizin	https://cutter.re/
Cyberbotics Webots Robot Simulator	Open source desktop application used to simulate robots	https://www.cyberbotics.com/
Cyberduck	Server and cloud storage browser	https://cyberduck.io/
CyberGhost	VPN client	https://www.cyberghostvpn.com/
CyberGhost VPN	VPN client	https://www.cyberghostvpn.com/
CyberPower PowerPanel Personal	Manage and control UPS systems	https://www.cyberpowersystems.com/products/software/power-panel-personal/
Cycling ‘74 Max	Flexible space to create your own interactive software	https://cycling74.com/products/max
Dadroit JSON Viewer	JSON Viewer	https://dadroit.com/
Daedalus Mainnet	Cryptocurrency wallet for ada on the Cardano blockchain	https://daedaluswallet.io/
DaisyDisk	Disk space visualiser	https://daisydiskapp.com/
Dangerzone	Convert potentially dangerous PDFs or Office documents into safe PDFs	https://dangerzone.rocks/
Dante Controller	Control inputs and outputs on a Dante network	https://www.getdante.com/products/software-essentials/dante-controller/
Dante Via	Connect applications to Dante network	https://www.getdante.com/products/software-essentials/dante-via/
DarkModeBuddy	Automatically switch between light and dark modes based on ambient light sensor	https://github.com/insidegui/DarkModeBuddy
darktable	Photography workflow application and raw developer	https://www.darktable.org/
Daruma	Track your goals using the Daruma Method	https://kadomaru.app/daruma/
DarwinDumper	App to dump system information to aid troubleshooting	https://bitbucket.org/blackosx/darwindumper
Dash	API documentation browser and code snippet manager	https://kapeli.com/dash
Dash-Qt	Dash - Reinventing Cryptocurrency	https://www.dash.org/
Dashcam Viewer	View videos, GPS data, and G-force data recorded by dashcams and action cams	https://dashcamviewer.com/
Dashcam Viewer by Earthshine Software	View videos, GPS data, and G-force data recorded by dashcams and action cams	https://dashcamviewer.com/
Data Rescue	Data recovery software	https://www.prosofteng.com/mac-data-recovery
Data Rescue 6	Data recovery software	https://www.prosofteng.com/mac-data-recovery
Datadog Agent	Monitoring and security across systems, apps, and services	https://www.datadoghq.com/
Datadog Security CLI	Datadog Security Product CLI	https://www.datadoghq.com/
Dataflare	Database manager	https://dataflare.app/
DataGraph	Scientific/statistical graphing software	https://www.visualdatatools.com/DataGraph/
DataGrip	Databases and SQL IDE	https://www.jetbrains.com/datagrip/
Dataiku Data Science Studio	Quick experimentation and operationalization for machine learning at scale	https://www.dataiku.com/
DataScienceStudio	Quick experimentation and operationalization for machine learning at scale	https://www.dataiku.com/
Datasette	Desktop application that wraps Datasette	https://datasette.io/desktop
DataSpell	IDE for Professional Data Scientists	https://www.jetbrains.com/dataspell/
datovka	Access and store data messages in a local database	https://www.datovka.cz/
Datovka	Access and store data messages in a local database	https://www.datovka.cz/
DatWeatherDoe	Menu bar weather app	https://github.com/inderdhir/DatWeatherDoe
Davit	GUI for Apple's container CLI	https://davit.app/
DavMail	Use any mail/calendar client with an Exchange server	https://davmail.sourceforge.net/
Dayflow	Generate a timeline of your day, automatically	https://github.com/JerryZLiu/Dayflow
DB Browser for SQLCipher Nightly	Database browser for SQLCipher	https://sqlitebrowser.org/
DB Browser for SQLite	Browser for SQLite databases	https://sqlitebrowser.org/
DB Browser for SQLite Nightly	Database browser for SQLite	https://sqlitebrowser.org/
DB Pro	Query, explore, and manage your databases with built-in AI	https://www.dbpro.app/
DBeaver	Universal database tool and SQL client	https://dbeaver.io/
DBeaver Community Edition	Universal database tool and SQL client	https://dbeaver.io/
DBeaver Enterprise Edition	Universal database tool and SQL client	https://dbeaver.com/dbeaver-enterprise/
DBeaver Lite Edition	Universal database tool and SQL client	https://dbeaver.com/dbeaver-lite/
DBeaver Team Edition	Universal database tool and SQL client	https://dbeaver.com/dbeaver-team-edition
DBeaver Ultimate Edition	Universal database tool and SQL client	https://dbeaver.com/dbeaver-ultimate/
DBeaverEE	Universal database tool and SQL client	https://dbeaver.com/dbeaver-enterprise/
DBeaverLite	Universal database tool and SQL client	https://dbeaver.com/dbeaver-lite/
DBeaverTeam	Universal database tool and SQL client	https://dbeaver.com/dbeaver-team-edition
DBeaverUltimate	Universal database tool and SQL client	https://dbeaver.com/dbeaver-ultimate/
DbGate	Database manager for MySQL, PostgreSQL, SQL Server, MongoDB, SQLite and others	https://dbgate.org/
DBngin	Database version management tool	https://dbngin.com/
DbSchema	Design, document and deploy databases	https://dbschema.com/
DbVisualizer	Database management and analysis tool	https://www.dbvis.com/
dbvr	Lightweight CLI tool for running database operations	https://dbeaver.com/dbvr/
DBX	Database management tool	https://dbxio.com/
DCommander	Two-pane file manager	https://devstorm-apps.com/dcommander/
DCP-o-matic	Convert video, audio and subtitles into DCP (Digital Cinema Package)	https://dcpomatic.com/
DCP-o-matic 2	Convert video, audio and subtitles into DCP (Digital Cinema Package)	https://dcpomatic.com/
DCP-o-matic 2 Batch converter	Convert video, audio and subtitles into DCP (Digital Cinema Package)	https://dcpomatic.com/
DCP-o-matic 2 Combiner	Convert video, audio and subtitles into DCP (Digital Cinema Package)	https://dcpomatic.com/
DCP-o-matic 2 Disk Writer	Convert video, audio and subtitles into DCP (Digital Cinema Package)	https://dcpomatic.com/
DCP-o-matic 2 Editor	Convert video, audio and subtitles into DCP (Digital Cinema Package)	https://dcpomatic.com/
DCP-o-matic 2 Encode Server	Convert video, audio and subtitles into DCP (Digital Cinema Package)	https://dcpomatic.com/
DCP-o-matic 2 KDM Creator	Convert video, audio and subtitles into DCP (Digital Cinema Package)	https://dcpomatic.com/
DCP-o-matic 2 Player	Play Digital Cinema Packages	https://dcpomatic.com/
DCP-o-matic 2 Playlist Editor	Convert video, audio and subtitles into DCP (Digital Cinema Package)	https://dcpomatic.com/
DCP-o-matic Batch converter	Convert video, audio and subtitles into DCP (Digital Cinema Package)	https://dcpomatic.com/
DCP-o-matic Disk Writer	Convert video, audio and subtitles into DCP (Digital Cinema Package)	https://dcpomatic.com/
DCP-o-matic Editor	Convert video, audio and subtitles into DCP (Digital Cinema Package)	https://dcpomatic.com/
DCP-o-matic Encode Server	Convert video, audio and subtitles into DCP (Digital Cinema Package)	https://dcpomatic.com/
DCP-o-matic KDM Creator	Convert video, audio and subtitles into DCP (Digital Cinema Package)	https://dcpomatic.com/
DCP-o-matic Player	Play Digital Cinema Packages	https://dcpomatic.com/
DCP-o-matic Playlist Editor	Convert video, audio and subtitles into DCP (Digital Cinema Package)	https://dcpomatic.com/
DCP-o-matic-combiner	Convert video, audio and subtitles into DCP (Digital Cinema Package)	https://dcpomatic.com/
DCV Viewer	Client for NICE DCV remote display protocol	https://www.amazondcv.com/
dd Utility	Write and backup operating system IMG and ISO files	https://github.com/thefanclub/dd-utility
dda	Tool for developing on the Datadog Agent platform	https://github.com/DataDog/datadog-agent
DDNet	Cooperative online platform game based on Teeworlds	https://ddnet.org/
DDNet-Server	Cooperative online platform game based on Teeworlds	https://ddnet.org/
DDPM	Monitors and peripherals manager	https://dell.com/
DeaDBeeF	Modular audio player	https://deadbeef.sourceforge.io/
Deadbolt	File encryption tool	https://github.com/alichtman/deadbolt
Debookee	Network traffic analyser	https://debookee.com/
Decentr	Web3 blockchain/metaverse browser	https://decentr.net/
Deckset	Presentations from Markdown	https://www.decksetapp.com/
Decloner	Duplicate files finder	https://www.pixelespressoapps.com/decloner/
Deco	IDE for building React Native applications	https://www.decosoftware.com/
Decrediton	GUI for the Decred wallet	https://github.com/decred/decrediton
DeepChat	AI assistant	https://deepchat.thinkinai.xyz/
Deeper	Tool to enable and disable hidden functions of Finder and other apps	https://www.titanium-software.fr/en/deeper.html
DeepGit	Tool to investigate the history of source code	https://www.syntevo.com/deepgit/
DeepL	AI-powered translator	https://www.deepl.com/
deepstream	Data-sync realtime server	https://deepstream.io/
Deezer	Music player	https://www.deezer.com/download
Default Folder X	Utility to enhance the Open and Save dialogs in applications	https://www.stclairsoft.com/DefaultFolderX/
Default Handler	Utility for changing default URL scheme handlers	https://blog.edovia.com/en/introducing-default-handler/
Defguard Client	WireGuard VPN client which supports multi-factor authentication	https://github.com/defguard/client
Defold	Game engine for development of desktop, mobile and web games	https://defold.com/
degr	Temperature and clock screensaver	https://degr.app/
Dehelper	Chinese-German dictionary	https://www.eudic.net/v4/de/app/dehelper
Dell Display and Peripheral Manager	Monitors and peripherals manager	https://dell.com/
Delta Chat	Secure and reliable decentralised instant messenger	https://delta.chat/
DeltaChat	Secure and reliable decentralised instant messenger	https://delta.chat/
DeltaWalker	Tool to compare and synchronise files and folders	https://www.deltawalker.com/
Deluge	BitTorrent client	https://deluge-torrent.org/
Denemo	Music notation program	https://denemo.org/
Derivative TouchDesigner	Tool for creating dynamic digital art	https://derivative.ca/
Descript	Audio and video editor	https://www.descript.com/
DeskPad	Virtual monitor for screen sharing	https://github.com/Stengo/DeskPad
Deskreen	Turns any device with a web browser into a secondary screen	https://deskreen.com/
Deskreen CE	Turns any device with a web browser into a secondary screen	https://deskreen.com/
DeskTime	Time tracker with additional workforce management features	https://desktime.com/
Desktop Composer	Appearance manager for the system and individual applications	https://www.apptorium.com/desktop-composer
desktoppr	Command-line tool to set the desktop picture	https://github.com/scriptingosx/desktoppr
DesktopUtility	Quick access to useful system tasks	https://sweetpproductions.com/
DeSmuME	Nintendo DS emulator	https://desmume.org/
DetectX Swift	Searching and troubleshooting tool	https://sqwarq.com/detectx/
Detexify	LaTeX handwritten symbol recognition	https://detexify.kirelabs.org/classify.html
DevCleaner	Reclaim storage used for Xcode caches	https://github.com/vashpan/xcode-dev-cleaner
DevDocs	API documentation viewer	https://github.com/dteoh/devdocs-macos/
Developer Excuses Screensaver	Screensaver showing quotes from developerexcuses.com	https://github.com/kimar/DeveloperExcuses
devilutionX	Diablo build for modern operating systems	https://github.com/diasurgical/devilutionX/
DevilutionX	Diablo build for modern operating systems	https://github.com/diasurgical/devilutionX/
Devin	Agentic IDE with AI agent command center	https://devin.ai/desktop
Devin - Next	Agentic IDE with AI agent command center	https://devin.ai/download?next=true
Devin CLI	Coding agent with Devin Cloud integration	https://cli.devin.ai/docs
Devin Desktop	Agentic IDE with AI agent command center	https://devin.ai/desktop
Devin Desktop Next (Beta)	Agentic IDE with AI agent command center	https://devin.ai/download?next=true
DevKinsta	Local WordPress Development Suite by Kinsta	https://devkinsta.com/
DevKnife	Collection of handy developer tools	https://devknife.app/
Devolo dLAN Cockpit	Configuration and network monitoring software	https://www.devolo.com/en/software-downloads/cockpit
DEVONagent	Assistant for efficient web searches	https://www.devontechnologies.com/apps/devonagent
DEVONagent Pro	Assistant for efficient web searches	https://www.devontechnologies.com/apps/devonagent
DEVONsphere Express	Find items related to the frontmost document locally or online	https://www.devontechnologies.com/apps/devonsphere
DEVONthink	Collect, organise, edit and annotate documents	https://www.devontechnologies.com/apps/devonthink
DevPod	UI to create reproducible developer environments based on a devcontainer.json	https://devpod.sh/
DevToys	Utilities designed to make common development tasks easier	https://github.com/DevToys-app/DevToys
DevUtils	All-in-one toolbox for developers	https://devutils.com/
Dex	Personal CRM that reminds you to keep in touch	https://getdex.com/
Dexed	DX7 FM synthesiser	https://asb2m10.github.io/dexed/
DFU Blaster Pro	Utility to put Apple silicon Macs into DFU mode for restore	https://twocanoes.com/products/mac/dfu-blaster/
DHS	Scans for dylib hijacking	https://objective-see.org/products/dhs.html
Dia	Web browser	https://www.diabrowser.com/
Diagnostics	Diagnostic (crash) reports viewer	https://github.com/macmade/Diagnostics
Dialpad	Cloud communication platform	https://dialpad.com/download
Dictionaries	Translate words without ever opening a dictionary	https://dictionaries.io/
DiffMerge	Visually compare and merge files	https://www.sourcegear.com/diffmerge/
Diffusion Bee	Run Stable Diffusion locally	https://diffusionbee.com/
DiffusionBee	Run Stable Diffusion locally	https://diffusionbee.com/
DigiCheck NG	Audio analysis software	https://rme-audio.de/digicheck-ng.html
Digiexam	Academic testing platform with device lockdown	https://www.digiexam.com/
digiexam	Academic testing platform with device lockdown	https://www.digiexam.com/
digiKam	Digital photo manager	https://www.digikam.org/
Digital	Logic designer and circuit simulator	https://github.com/hneemann/Digital
DingTalk	Teamwork app by Alibaba Group	https://www.dingtalk.com/
Dintch	Check the integrity of your files	https://eclecticlight.co/dintch
dintch18/Dintch	Check the integrity of your files	https://eclecticlight.co/dintch
DirEqual	Advanced directory compare utility	https://naarakstudio.com/direqual/
Discord	Voice and text chat software	https://discord.com/
Discord Canary	Voice and text chat software	https://canary.discord.com/
Discord Development	Voice and text chat software	https://discord.com/
Discord PTB	Voice and text chat software	https://discord.com/
DiscreteScroll	Utility to fix a common scroll wheel problem	https://github.com/emreyolcu/discrete-scroll
Disk Diet	Free up disk space	https://www.tunabellysoftware.com/disk_diet/
Disk Drill	Data recovery software	https://www.cleverfiles.com/
Disk Expert	Disk space analyzer	https://nektony.com/disk-expert
Disk Expert 6	Disk space analyzer	https://nektony.com/disk-expert
Disk Inventory X	Disk usage utility	https://www.derlien.com/
Disk Jockey	Disk image creator and analyser for retro computers or emulators	https://diskjockey.onegeekarmy.eu/
DiskBoard	Disk benchmark and S.M.A.R.T. health monitor	https://www.diskboard.com/
DiskCatalogMaker	Disk management tool	https://diskcatalogmaker.com/
diskspace	Show available disk space on APFS volumes	https://github.com/scriptingosx/diskspace
Displaperture	Rounds your display corners	https://manytricks.com/displaperture/
Display Pilot 2	Display control utility	https://www.benq.com/en-ap/monitor/software/display-pilot-2.html
DisplayBuddy	Monitor resolution and settings manager	https://displaybuddy.app/
DisplayCAL	Display calibration and characterization powered by ArgyllCMS	https://displaycal.net/
DisplayLink USB Graphics Software	Drivers for DisplayLink docks, adapters and monitors	https://www.synaptics.com/products/displaylink-graphics
Displays	Monitor resolution and settings manager	https://www.jibapps.com/apps/displays/
Distill Web Monitor	Monitor webpages for changes	https://distill.io/
DistroAV	NDI integration for OBS Studio	https://distroav.org/
Ditto	Screen mirroring and digital signage	https://www.airsquirrels.com/ditto
Diversion CLI	Cloud-native version control CLI and agent	https://www.diversion.dev/
Diversion Desktop	Desktop app for Diversion version control	https://www.diversion.dev/
Divvy	Application window manager focusing on simplicity	https://mizage.com/divvy/
Dixa	Customer service platform	https://dixa.com/
DJ.Studio	DAW for DJs	https://dj.studio/
DJ.Studio Next	DAW for DJs	https://dj.studio/
DJUCED	DJ software for Hercules controllers	https://www.djuced.com/
djv	Review software for VFX, animation, and film production	https://grizzlypeak3d.github.io/DJV/
DJV	Review software for VFX, animation, and film production	https://grizzlypeak3d.github.io/DJV/
DjView	DjVu viewer and browser plugin	https://djvu.sourceforge.net/
dmenu-mac	Keyboard-only application launcher	https://github.com/oNaiPs/dmenu-mac
DMG Canvas	Stylised disk images made easy	https://www.araelium.com/dmgcanvas
dmidiplayer	Multiplatform MIDI File Player	https://dmidiplayer.sourceforge.io/
DNClient	Peer-to-peer VPN client for managed nebula networks	https://www.defined.net/
DNClient Desktop	Peer-to-peer VPN client for managed nebula networks	https://www.defined.net/
DNClient Server	Peer-to-peer VPN client daemon for managed nebula networks	https://www.defined.net/
DNSMonitor	Monitor DNS activity	https://objective-see.org/products/utilities.html#DNSMonitor
Do Not Disturb	Open-source physical access (aka 'evil maid') attack detector	https://objective-see.org/products/dnd.html
Dock Mate	Window previews and controls	https://www.macenhance.com/dockmate
DockDoor	Window peeking utility app	https://dockdoor.net/
DockDoor Pro	Dock replacement with widgets, profiles and window previews	https://pro.dockdoor.net/
Docker	App to build and share containerised applications and microservices	https://www.docker.com/products/docker-desktop
Docker CE	App to build and share containerised applications and microservices	https://www.docker.com/products/docker-desktop
Docker Community Edition	App to build and share containerised applications and microservices	https://www.docker.com/products/docker-desktop
Docker Desktop	App to build and share containerised applications and microservices	https://www.docker.com/products/docker-desktop
dockey	Advanced Dock preferences	https://dockey.publicspace.co/
DockFix	Dock replacement	https://www.dockfix.app/
DockFlow	Manage Dock presets and switch between them instantly	https://dockflow.appitstudio.com/
DockMate	Window previews and controls	https://www.macenhance.com/dockmate
Dockside	Dock utility	https://hachipoo.com/dockside-app
Dockspace	Widgets for your dock	https://getdockspace.app/
DockView	Utility to preview application windows in the dock	https://noteifyapp.com/dockview/
DockX	Display content in the dock and menu bar	https://dockx.app/
Dogecoin	Cryptocurrency	https://dogecoin.com/
Dogecoin-Qt	Cryptocurrency	https://dogecoin.com/
Doll	Utility to show apps badges from the dock in the menu bar	https://github.com/xiaogdgenuine/Doll/
Dolphin	Emulator to play GameCube and Wii games	https://dolphin-emu.org/
Dolphin Dev	Emulator to play GameCube and Wii games	https://dolphin-emu.org/
Donut	Anti-detect web browser	https://donutbrowser.com/
Donut Browser	Anti-detect web browser	https://donutbrowser.com/
Donut Browser Nightly	Anti-detect web browser	https://donutbrowser.com/
Doomsday	Enhanced source port of Doom, Heretic, and Hexen	https://dengine.net/
Doomsday Engine	Enhanced source port of Doom, Heretic, and Hexen	https://dengine.net/
Doomsday Shell	Enhanced source port of Doom, Heretic, and Hexen	https://dengine.net/
Doomseeker	Multiplayer oriented port for Doom and Doom II	https://zandronum.com/
Doppler	Music player	https://brushedtype.co/doppler/
Dorico	Scoring software	https://www.steinberg.net/dorico/
Dorso	Posture monitoring app	https://github.com/tldev/dorso
dosbox	Emulator for x86 with DOS	https://www.dosbox.com/
DOSBox	Emulator for x86 with DOS	https://www.dosbox.com/
DOSBox Staging	DOS game emulator	https://github.com/dosbox-staging/dosbox-staging/
DOSBox-X	Fork of the DOSBox project	https://dosbox-x.com/
dosbox-x/dosbox-x	Fork of the DOSBox project	https://dosbox-x.com/
Dot	Menu bar calendar with meeting reminders	https://www.trydot.app/
doubao	AI chat assistant	https://www.doubao.com/chat/
Doubao Input Method	Chinese input method with voice input and intelligent suggestions	https://shurufa.doubao.com/pc
Double Commander	File manager with two panels	https://doublecmd.sourceforge.io/
Doughnut	Podcast client	https://github.com/dyerc/Doughnut/
Doukutsu	Action-adventure game reminiscent of classic 8- and 16-bit games	https://www.cavestory.org/
Douyin	Social software for creating music short videos	https://www.douyin.com/
Douyin Chat	Chat client for Douyin	https://www.douyin.com/downloadpage/chat
Downie	Downloads videos from different websites	https://software.charliemonroe.net/downie.php
Downie 4	Downloads videos from different websites	https://software.charliemonroe.net/downie.php
Doxie	Companion app for scanner hardware	https://www.getdoxie.com/
Doxygen	Generate documentation from source code	https://www.doxygen.nl/
Drata Agent	Security audit software	https://drata.com/
Draw Things	Run Stable Diffusion locally	https://drawthings.ai/
draw.io	Online diagram software	https://www.diagrams.net/
draw.io Desktop	Online diagram software	https://www.diagrams.net/
DrawBot	Write Python scripts to generate two-dimensional graphics	https://www.drawbot.com/
DrawPen	Screen annotation tool	https://github.com/DmytroVasin/DrawPen
Drawpile	Collaborative drawing app	https://drawpile.net/
Dremel DigiLab 3D Slicer	Securely slice your CAD files	https://3pitech.com/pages/desktop-slicer-software
Dremel3DSlicer-1.2.3-mac/Dremel DigiLab 3D Slicer	Securely slice your CAD files	https://3pitech.com/pages/desktop-slicer-software
DriveDx	Drive health diagnostic & monitoring tool	https://binaryfruit.com/drivedx
DriveDX	Drive health diagnostic & monitoring tool	https://binaryfruit.com/drivedx
DriveThruRPG	Sync DriveThruRPG libraries to compatible devices	https://www.drivethrurpg.com/library_client.php
DriveThruRPG Library App	Sync DriveThruRPG libraries to compatible devices	https://www.drivethrurpg.com/library_client.php
Droid	AI-powered software engineering agent by Factory	https://docs.factory.ai/cli/getting-started/overview
DroidCam OBS	Use your phone as a camera directly in OBS Studio	https://www.dev47apps.com/obs/
Dropbox	Client for the Dropbox cloud storage service	https://www.dropbox.com/
Dropbox Dash	Universal search tool	https://www.dropbox.com/dash
Dropbox Passwords	Password manager that syncs across devices	https://www.dropbox.com/features/security/passwords
DropDMG	Create DMGs and other archives	https://c-command.com/dropdmg/
Droplr	Screenshot and screen recorder	https://droplr.com/
Droppy	Drag and drop file shelf	https://getdroppy.app/
Dropshare	File sharing solution	https://dropshare.app/
Dropshare 6	File sharing solution	https://dropshare.app/
Dropshelf	Drag and drop helper app	https://pilotmoon.com/dropshelf/
Dropzone	Productivity app	https://aptonic.com/
Dropzone 4	Productivity app	https://aptonic.com/
Drovio	Remote pair programming and team collaboration tool	https://www.drovio.com/
DS4 Control	Menu bar pane for DeepSeek V4 via DwarfStar	https://github.com/notatestuser/ds4-control
DuckDuckGo	Web browser focusing on privacy	https://duckduckgo.com/
duckieTV	Tool to track TV shows with semi-automagic torrent integration	https://schizoduckie.github.io/DuckieTV/
DueFocus	Time tracking and productivity software	https://duefocus.com/
duet	Remote desktop and second display tool	https://www.duetdisplay.com/
Duet	Remote desktop and second display tool	https://www.duetdisplay.com/
Dungeon Crawl Stone Soup	Game of dungeon exploration, combat and magic	https://crawl.develz.org/
Dungeon Crawl Stone Soup - Console	Game of dungeon exploration, combat and magic	https://crawl.develz.org/
Dungeon Crawl Stone Soup - Tiles	Game of dungeon exploration, combat and magic	https://crawl.develz.org/
Duo Desktop	Endpoint health checks for Duo-protected applications	https://duo.com/docs/duo-desktop
DuoConnect	Access your organisation’s SSH servers	https://guide.duo.com/duoconnect
dupeguru	Finds duplicate files in a computer system	https://dupeguru.voltaicideas.net/
dupeGuru	Finds duplicate files in a computer system	https://dupeguru.voltaicideas.net/
Duplicacy Command Line Version	Cloud backup tool	https://duplicacy.com/
Duplicacy Web Edition	Cloud backup tool	https://duplicacy.com/
Duplicate Annihilator for Photos	Photo duplicate detector	https://brattoo.com/duplicateannihilator/
Duplicate Audio Finder	Bulk audio file fingerprinting & similarity detector	https://speechpulse.com/avbeam-software-store/duplicateaudiofinder/
Duplicate File Finder	Find and remove unwanted duplicate files and folders	https://nektony.com/duplicate-finder-free
Duplicate File Finder 9	Find and remove unwanted duplicate files and folders	https://nektony.com/duplicate-finder-free
DuplicateAudioFinder	Bulk audio file fingerprinting & similarity detector	https://speechpulse.com/avbeam-software-store/duplicateaudiofinder/
Duplicati	Store securely encrypted backups in the cloud	https://duplicati.com/
Dusklight	Reverse-engineered reimplementation of Twilight Princess	https://twilitrealm.dev/
dust3d	Open-source 3D modelling software	https://dust3d.org/
Dust3D	Open-source 3D modelling software	https://dust3d.org/
DVDStyler	DVD authoring application	https://www.dvdstyler.org/
Dwarf Fortress LMP (Lazy Mac Pack)	Use and switch graphics packs with Dwarf Fortress without corrupting your game	https://dffd.bay12games.com/file.php?id=12202
DwellClick	Assistive app for clicking without physically pressing a mouse button	https://pilotmoon.com/dwellclick/
dyad	AI-powered app builder	https://dyad.sh/
Dyad	AI-powered app builder	https://dyad.sh/
Dyalog APL	APL-based development environment	https://www.dyalog.com/
Dylib Hijack Scanner	Scans for dylib hijacking	https://objective-see.org/products/dhs.html
Dymo Connect	Software for DYMO LabelWriters	https://www.dymo.com/support?cfid=online-support
Dynobase	GUI Client for DynamoDB	https://dynobase.dev/
EA app	Electronic Arts game launcher	https://www.ea.com/ea-app
EA App	Electronic Arts game launcher	https://www.ea.com/ea-app
Eagle	Organise all your reference images in one place	https://eagle.cool/
EagleFiler	Organise files, archive e-mails, save Web pages and notes, search everything	https://c-command.com/eaglefiler/
EarnApp	Monetize unused internet bandwidth	https://earnapp.com/
Ears	Instant audio switcher	https://retina.studio/ears/
East Money	Stock trading platform	https://emdesk.eastmoney.com/pc_activity/AHome/Index
Easy Move+Resize	Utility to support moving and resizing using a modifier key and mouse drag	https://github.com/dmarcotte/easy-move-resize
EasyDevo	Elegant tool built for coding	https://easydevo.boringboring.design/
Easydict	Dictionary and translator app	https://github.com/tisfeng/Easydict/
EasyDMG	One click DMG installs	https://easydmg.app/
EasyEDA	PCB design tool	https://easyeda.com/
EasyFind	Find files, folders, or contents in any file	https://www.devontechnologies.com/apps/freeware
EasyMac Cleaner	Cleaning, privacy, and system optimisation utility	https://martiancat.space/products/cleaner.html
EBMac	Electronic dictionary viewer	https://ebstudio.info/manual/EBMac/
Ecamm Live	Live streaming & video production studio	https://www.ecamm.com/
Ecamm/Ecamm Live	Live streaming & video production studio	https://www.ecamm.com/
Eclipse	Eclipse IDE for C and C++ developers	https://eclipse.org/
Eclipse for RCP and RAP Developers	Eclipse IDE for RCP and RAP developers	https://eclipse.org/
Eclipse IDE for C/C++ Developers	Eclipse IDE for C and C++ developers	https://eclipse.org/
Eclipse IDE for Eclipse Committers	Eclipse integrated development environment	https://eclipse.org/
Eclipse IDE for Java and DSL Developers	Eclipse IDE for Java and DSL developers	https://eclipse.org/
Eclipse IDE for Java Developers	Eclipse IDE for Java developers	https://eclipse.org/
Eclipse IDE for Java EE Developers	Eclipse IDE for Java EE developers	https://eclipse.org/
Eclipse IDE for PHP Developers	Eclipse IDE for PHP developers	https://eclipse.org/
Eclipse IDE installer	Install and update your Eclipse Development Environment	https://eclipse.org/
Eclipse Installer	Install and update your Eclipse Development Environment	https://eclipse.org/
Eclipse Memory Analyzer	Java heap analyzer	https://eclipse.dev/mat/
Eclipse Modeling Tools	Tools and runtimes for building model-based applications	https://eclipse.org/
Eclipse SDK	SDK for the Eclipse IDE	https://eclipse.org/
Eclipse Temurin 11	JDK from the Eclipse Foundation (Adoptium)	https://adoptium.net/
Eclipse Temurin 21	JDK from the Eclipse Foundation (Adoptium)	https://adoptium.net/
Eclipse Temurin 25	JDK from the Eclipse Foundation (Adoptium)	https://adoptium.net/
Eclipse Temurin 8	JDK from the Eclipse Foundation (Adoptium)	https://adoptium.net/
Eclipse Temurin Java Development Kit	JDK from the Eclipse Foundation (Adoptium)	https://adoptium.net/
ecoDMS Client	Document Management System	https://www.ecodms.de/
Eddie	OpenVPN UI	https://eddie.website/
Editaro	Text editor	https://editaro.com/
EdrawMax	Diagram software	https://www.edrawsoft.com/
EdrawMind	Mind mapping software	https://www.edrawsoft.com/edrawmind/
EEZ Studio	Visual tool for GUI development and T&M automation	https://www.envox.eu/studio/studio-introduction/
Effect House	Create vibrant AR effects for TikTok	https://effecthouse.tiktok.com/
Egnyte	Client for the Egnyte cloud storage service	https://www.egnyte.com/
eGovFrameDev	Open-source framework by South Korea for web-based public service development	https://www.egovframe.go.kr/
eGovFrameDev-5.0.2-macOS-AArch64	Open-source framework by South Korea for web-based public service development	https://www.egovframe.go.kr/
eID Viewer	Belgian ID card reader	https://eid.belgium.be/
Eigent	Desktop AI agent	https://www.eigent.ai/
EiskaltDC++	Filesharing using Direct Connect and ADC protocols	https://sourceforge.net/projects/eiskaltdcpp/
ELAN	Annotation tool for audio and video recordings	https://archive.mpi.nl/tla/elan
ELAN_7-1_M1_mac/ELAN_7.1	Annotation tool for audio and video recordings	https://archive.mpi.nl/tla/elan
elasticvue	Elasticsearch GUI	https://elasticvue.com/
Elasticvue	Elasticsearch GUI	https://elasticvue.com/
ELECOM Mouse Assistant	Software to more effectively use an ELECOM mouse	https://www.elecom.co.jp/global/download-list/utility/mouse_assistant/mac/
electerm	Terminal/ssh/sftp/telnet/serialport/RDP/VNC/Spice/ftp client	https://electerm.org/
Electorrent	Desktop remote torrenting application	https://github.com/tympanix/Electorrent
Electric Sheep	Collaborative abstract artwork software	https://gold.electricsheep.org/
Electric VLSI Design System	Electrical CAD system for the design of integrated circuits	https://www.gnu.org/software/electric/electric.html
electrocrud	Database CRUD application	https://github.com/garrylachman/ElectroCRUD
ElectroCRUD	Database CRUD application	https://github.com/garrylachman/ElectroCRUD
Electron	Build desktop apps with JavaScript, HTML, and CSS	https://electronjs.org/
Electron Cash	Thin client for Bitcoin Cash	https://electroncash.org/
Electron Fiddle	Create and play with small Electron experiments	https://www.electronjs.org/fiddle
Electron-Cash	Thin client for Bitcoin Cash	https://electroncash.org/
electron-mail	Unofficial ProtonMail Desktop App	https://github.com/vladimiry/ElectronMail
ElectronMail	Unofficial ProtonMail Desktop App	https://github.com/vladimiry/ElectronMail
Electrum	Bitcoin thin client	https://electrum.org/
Electrum-GRS	Groestlcoin thin client	https://www.groestlcoin.org/groestlcoin-electrum-wallet/
Electrum-LTC	Litecoin wallet	https://electrum-ltc.org/
ElectrumSV	Desktop wallet for Bitcoin SV	https://electrumsv.io/
ElegooSlicer	Open-source slicer for FDM 3D printers	https://github.com/ELEGOO-3D/ElegooSlicer
Elektron Transfer	Transfer samples, presets, sounds, projects and firmware to Elektron devices	https://elektron.se/support-downloads/transfer
Element	Matrix collaboration client	https://element.io/get-started
Element Nightly	Matrix collaboration client	https://element.io/get-started
Elemental	Native XML Database with XQuery and XSLT	https://www.elemental.xyz/
elemental	Native XML Database with XQuery and XSLT	https://www.elemental.xyz/
Elephas	Personal AI Writing Assistant	https://elephas.app/
Elephicon	Create icns and ico files from png	https://github.com/sprout2000/elephicon/
Elgato Camera Hub	Elgato FACECAM configuration tool	https://www.elgato.com/ww/en/s/downloads
Elgato Capture Device Utility	Update and configure Elgato Capture devices	https://www.elgato.com/ww/en/s/downloads
Elgato Control Center	Control your Elgato key lights	https://www.elgato.com/ww/en/s/downloads
Elgato Game Capture HD	Elgato video capture and streaming app	https://www.elgato.com/ww/en/s/downloads
Elgato Stream Deck	Assign keys, and then decorate and label them	https://www.elgato.com/ww/en/s/downloads
Elgato Studio	Capture and manage Elgato devices for content creation	https://www.elgato.com/ww/en/s/downloads
Elgato Video Capture	Capture video from analogue sources	https://www.elgato.com/ww/en/s/downloads
Elgato Wave Link	Software custom-built for content creation	https://www.elgato.com/ww/en/s/wave-link-app
eLicenser Control Center	Music software license manager	https://helpcenter.steinberg.de/hc/en-us/articles/360008841379
Elmedia Player	Video and audio player	https://www.electronic.us/products/elmedia/
Eloquent	Free/open-source Bible study application, based on the SWORD Project	https://github.com/mdbergmann/Eloquent
Elpass	Password manager	https://elpass.app/
Eltima CloudMounter	Mounts cloud storages as local discs	https://mac.eltima.com/mount-cloud-drive.html
eM Client	Email client	https://www.emclient.com/
Emacs	GNU Emacs text editor	https://emacsformacosx.com/
Emailchemy	Email migration, conversion and archival software	https://weirdkid.com/emailchemy/
Emby	Client for emby media server	https://emby.media/
Emby Server	Personal media server with apps on just about every device	https://emby.media/
Emdash	UI for running multiple coding agents in parallel	https://www.emdash.sh/
EME	Markdown editor	https://github.com/egoist/eme
emmetapp	Tiling and stacking window manager and window resizing tool	https://emmetapp.com/
Emojipedia	Dictionary containing Emoji and their meanings	https://github.com/gingerbeardman/Emojipedia
Empoche	Automatic time-tracking with task and project management	https://empoche.com/
EmulationStation Desktop Edition	Frontend for browsing and launching games from your multi-platform collection	https://www.es-de.org/
Enclave	Safely build private networks without configs, firewalls or access control lists	https://enclave.io/
EncryptMe	VPN and encryption software	https://encrypt.me/
Endless Sky	Space exploration, trading, and combat game	https://endless-sky.github.io/
Endless Sky High-DPI	High-DPI plugin for Endless Sky	https://endless-sky.github.io/
EndNote	Reference manager	https://endnote.com/
Energia	Electronics prototyping platform	https://energia.nu/
Energiza	Charging manager for your MacBooks	https://appgineers.de/energiza/
Energiza Pro	Charging manager for your MacBooks	https://appgineers.de/energiza/
EnfuseGUI	HDR image creator	https://swipeware.com/applications/enfusegui/
Engine DJ Desktop	DJ software suite	https://enginedj.com/
Enigma	Puzzle game inspired by Oxyd and Rock'n'Roll	https://www.nongnu.org/enigma/
Enjoyable	Use your gamepad or joystick like a mouse and keyboard	https://yukkurigames.com/enjoyable/
Enpass	Password and credentials manager	https://www.enpass.io/
ente	Desktop client for Ente Photos	https://ente.io/
Ente	Desktop client for Ente Photos	https://ente.io/
Ente Auth	Desktop client for Ente Auth	https://ente.io/auth/
entry	Block-based coding platform	https://playentry.org/
EnvKey	Protects credentials and syncs configurations	https://www.envkey.com/
EnzymeX	Visualise and edit DNA sequence files	https://nucleobytes.com/enzymex/index.html
eObčanka	Czech national identity card app	https://info.identita.gov.cz/eop/InstalacemacOS.aspx
Epic	Private, secure web browser	https://epicbrowser.com/
Epic Games Launcher	Launcher for *Epic Games* games	https://www.epicgames.com/
Epic Privacy Browser	Private, secure web browser	https://epicbrowser.com/
Epicenter Whispering	Audio transcription that works with local and cloud models	https://whispering.epicenter.so/
Epilogue Playback	Play and manage Game Boy cartridges on your computer	https://www.epilogue.co/
EpocCam	Turn your phone into a webcam	https://www.elgato.com/ww/en/s/downloads
Epoch Flip Clock Screensaver	Flip clock screensaver	https://github.com/chrstphrknwtn/epoch-flip-clock-screensaver/
Epson Print Layout	Software to layout and print images with Epson printers	https://epson.com/epson-print-layout
Epubor Ultimate	Convert and remove DRM on eBooks	https://www.epubor.com/
eqMac	System-wide audio equaliser	https://eqmac.app/
equibop	Custom Discord App	https://github.com/Equicord/Equibop
Equibop	Custom Discord App	https://github.com/Equicord/Equibop
Equinox	Create dynamic wallpapers	https://equinoxmac.com/
ES-DE	Frontend for browsing and launching games from your multi-platform collection	https://www.es-de.org/
ESET Cyber Security	Security including web and email protection	https://www.eset.com/
Espanso	Cross-platform Text Expander written in Rust	https://espanso.org/
ESPHome Device Builder	Desktop app to create, edit and install your ESPHome device configurations	https://desktop.esphome.io/
Espresso	Website editor focusing on flair and efficiency	https://espressoapp.com/
Etcher	Tool to flash OS images to SD cards & USB drives	https://balena.io/etcher
ethui	Ethereum development toolkit with wallet and anvil support	https://ethui.dev/
EtreCheck	Utility to finds and fix problems on computer systems	https://etrecheck.com/
EtreCheckPro	Utility to finds and fix problems on computer systems	https://etrecheck.com/
Eudic	English dictionary	https://www.eudic.net/v4/en/app/eudic
eufyMake Studio	Slicer for eufyMake 3D printers	https://www.eufymake.com/eufymake-studio
eul	Status monitoring	https://github.com/gao-sun/eul
EurKEY keyboard layout	Keyboard Layout for Europeans, Coders and Translators	https://eurkey.steffen.bruentjen.eu/
EurKEY Next keyboard layout	Keyboard layout for Europeans, coders, and translators	https://eurkey-macos.eu/
EV3 Classroom	Companion app for the LEGO MINDSTORMS Education EV3 Core Set	https://education.lego.com/en-us/downloads/mindstorms-ev3/software
EV3Classroom	Companion app for the LEGO MINDSTORMS Education EV3 Core Set	https://education.lego.com/en-us/downloads/mindstorms-ev3/software
EVE Online	Launcher for the space MMO game EVE Online	https://www.eveonline.com/
eve-online	Launcher for the space MMO game EVE Online	https://www.eveonline.com/
Evernote	App for note taking, organising, task lists, and archiving	https://evernote.com/
EVKey	Vietnamese keyboard	https://evkeyvn.com/
EVKeyMac	Vietnamese keyboard	https://evkeyvn.com/
Ex Falso	Music tag editor	https://quodlibet.readthedocs.io/
ExactScan	Document scanner	https://exactscan.com/index.html
ExcalidrawZ	Excalidraw client	https://excalidrawz.chocoford.com/
Excire Foto	Photo library manager with object recognition, search, and culling tools	https://excire.com/en/excire-foto/
Excire Search	Lightroom Classic plugin with automatic keywording and advanced search	https://excire.com/en/excire-search/
Executor	Tool discovery and execution layer for AI agents	https://executor.sh/
eXeLearning	Authoring tool to create educational resources	https://exelearning.net/
ExFalso	Music tag editor	https://quodlibet.readthedocs.io/
ExifCleaner	Metadata cleaner	https://exifcleaner.com/
ExifRenamer	Tool to rename digital photos, movie- and audio-clips	https://www.qdev.de/?location=mac/exifrenamer&forcelang=en
eXist-db	Native XML database and application platform	https://exist-db.org/exist/apps/homepage/index.html
EXO	Run AI models locally across multiple devices	https://exolabs.net/
ExpanDrive	Network drive and browser for cloud storage	https://www.expandrive.com/apps/expandrive/
Explorer	Data Explorer	https://github.com/jfbouzereau/explorer
Explorer-darwin-x64	Data Explorer	https://github.com/jfbouzereau/explorer
Expo Orbit	Launch builds and start simulators from your menu bar	https://github.com/expo/orbit/
Express Scribe Transcription Software	Foot pedal controlled digital transcription audio player	https://www.nch.com.au/scribe/index.html
Expressions	Regular expressions manager app	https://www.apptorium.com/expressions
ExpressScribe	Foot pedal controlled digital transcription audio player	https://www.nch.com.au/scribe/index.html
ExpressVPN	VPN client for secure and private internet access	https://www.expressvpn.works/
extFS for Mac by Paragon Software	Read/write support for ext2/3/4 formatted volumes	https://www.paragon-software.com/home/extfs-mac/
ExtraDock	Add fully customizable extra docks	https://extradock.app/
Extraterm	Swiss army chainsaw of terminal emulators	https://extraterm.org/
ExtratermQt	Swiss army chainsaw of terminal emulators	https://extraterm.org/
Eye-One Profiler	Automation and creative controls for photographers and designers	https://www.xrite.com/service-support/product-support/formulation-and-qc-software/i1profiler
F-Bar	Manage Laravel Forge servers from the menubar	https://laravel-forge-menubar.com/
f.lux	Screen colour temperature controller	https://justgetflux.com/
FabFilter Micro	Filter plug-in	https://www.fabfilter.com/products/micro-mini-filter-plug-in
FabFilter One	Synthesiser plug-in	https://www.fabfilter.com/products/one-basic-synthesizer-plug-in
FabFilter Pro-C	Compressor plug-in	https://www.fabfilter.com/products/pro-c-2-compressor-plug-in
FabFilter Pro-DS	De-esser plug-in	https://www.fabfilter.com/products/pro-ds-de-esser-plug-in
FabFilter Pro-G	Gate/expander plug-in	https://www.fabfilter.com/products/pro-g-gate-expander-plug-in
FabFilter Pro-L	Limiter plug-in	https://www.fabfilter.com/products/pro-l-2-limiter-plug-in
FabFilter Pro-MB	Multiband compressor plug-in	https://www.fabfilter.com/products/pro-mb-multiband-compressor-plug-in
FabFilter Pro-Q	Equaliser plug-in	https://www.fabfilter.com/products/pro-q-3-equalizer-plug-in
FabFilter Pro-R	Reverb plug-in	https://www.fabfilter.com/products/pro-r-2-reverb-plug-in
FabFilter Saturn	Multiband distorsion/saturation plug-in	https://www.fabfilter.com/products/saturn-2-multiband-distortion-saturation-plug-in
FabFilter Simplon	Filter plug-in	https://www.fabfilter.com/products/simplon-basic-filter-plug-in
FabFilter Timeless	Tape delay plug-in	https://www.fabfilter.com/products/timeless-3-delay-plug-in
FabFilter Twin	Synthesiser plug-in	https://www.fabfilter.com/products/twin-3-synthesizer-plug-in
FabFilter Volcano	Filter plug-in	https://www.fabfilter.com/products/volcano-3-filter-plug-in
Fabric	Personal knowledge management and note-taking app	https://fabric.so/
Facebook Flipper	Desktop debugging platform for mobile developers	https://fbflipper.com/
Facebook Messenger	Native desktop app for Messenger (formerly Facebook Messenger)	https://www.messenger.com/desktop
FaceScreen	Camera and text overlay for presentations and screen sharing	https://facescreenapp.com/
Factor	Programming language	https://factorcode.org/
Factory	Native AI agent interface to build, manage, and ship software by Factory	https://www.factory.ai/
Fake	Browser for web automation and testing	https://fakeapp.com/
Falstad CircuitJS	Electronic circuit simulator	https://www.falstad.com/circuit/
FannyWidget	Notification Center widget and menu bar application to monitor fans	https://fannywidget.com/
FannyWidget-v2.3.0/Fanny	Notification Center widget and menu bar application to monitor fans	https://fannywidget.com/
Fantastical	Calendar software	https://flexibits.com/fantastical
far2l	Unix fork of FAR Manager v2	https://github.com/elfmz/far2l
Farrago	Audio playback	https://rogueamoeba.com/farrago/
FastDMG	Alternative to Apple's DiskImageMounter app	https://sveinbjorn.org/fastdmg
Fastmail	Email client	https://www.fastmail.com/
Fastmarks	Search and open web browser bookmarks	https://retina.studio/fastmarks/
FastRawViewer	Opens RAW files and renders them on-the-fly	https://www.fastrawviewer.com/
FastScripts	Tool for running time-saving scripts	https://redsweater.com/fastscripts/
Fathom	Record and transcribe video conferences	https://fathom.video/
Favro	Collaborative planning app	https://www.favro.com/
FBReader	Book reader	https://fbreader.org/
Feather	Monero desktop wallet	https://featherwallet.org/
fedistar	Multi-column Mastodon, Pleroma, and Friendica client for desktop	https://fedistar.net/
Fedora Media Writer	Tool to write Fedora images to portable media files	https://docs.fedoraproject.org/en-US/quick-docs/creating-and-using-a-live-installation-image/
FedoraMediaWriter	Tool to write Fedora images to portable media files	https://docs.fedoraproject.org/en-US/quick-docs/creating-and-using-a-live-installation-image/
Feed the Beast	Minecraft mod downloader and manager	https://www.feed-the-beast.com/
FeedFlow	RSS reader	https://www.feedflow.dev/
Feishu	Project management software	https://www.feishu.cn/
Fellow	Collaborative meeting agendas, notes, and action items	https://fellow.app/
Ferdium	Multi-platform multi-messaging app	https://ferdium.org/
Ferdium Nightly	Multi-platform multi-messaging app	https://ferdium.org/
Fetch	File transfer client	https://fetchsoftworks.com/fetch/
ff·Works	Video-encoding and transcoding app	https://www.ffworks.net/
Fidelity Trader+	Trading platform	https://www.fidelity.com/trading/advanced-trading-tools/active-trader-pro/overview
fido2-manage	Manage FIDO2.1 security keys	https://www.token2.swiss/site/page/fido2-1-security-key-management-tool-for-macos-user-guide
FIDO2.1 Security Key Management Tool	Manage FIDO2.1 security keys	https://www.token2.swiss/site/page/fido2-1-security-key-management-tool-for-macos-user-guide
Fightcade	Matchmaking platform for retro gaming	https://www.fightcade.com/
Fightcade2	Matchmaking platform for retro gaming	https://www.fightcade.com/
Figma	Collaborative team software	https://www.figma.com/
Figma Agent	Font installers for Figma.app	https://www.figma.com/
Figma Beta	Collaborative team software	https://figma.com/
FigTree	Phylogenetic tree viewer	https://github.com/rambaut/figtree/
FigTree v1.4.4	Phylogenetic tree viewer	https://github.com/rambaut/figtree/
Fiji	Open-source image processing package	https://fiji.sc/
File Juicer	Extract images from PDF, PowerPoint, Word, Excel and other Files	https://echoone.com/filejuicer/
File Monitor	FSEvents client	https://newosxbook.com/tools/filemon.html
FileBot	Tool for organising and renaming movies, TV shows, anime or music	https://www.filebot.net/
FileFaker	Tool for generating fake files	https://filefaker.com/
FileFillet	Efficient file organizer	https://www.filefillet.com/
FileMaker Pro	Relational database and rapid application development platform	https://www.claris.com/filemaker/
FileMonitor	Monitor filesystem activity	https://objective-see.org/products/utilities.html#FileMonitor
Filen	Desktop client for Filen.io	https://filen.io/
FilePane	File management multi-tool	https://mymixapps.com/filepane
Filo	AI-powered email client designed for Gmail	https://www.filomail.com/
FiloMail	AI-powered email client designed for Gmail	https://www.filomail.com/
Final Fantasy XIV	Story-driven massively multiplayer online role-playing game	https://www.finalfantasyxiv.com/
FINAL FANTASY XIV ONLINE	Story-driven massively multiplayer online role-playing game	https://www.finalfantasyxiv.com/
FinalShell	SSH tool, server management and remote desktop acceleration software	https://www.hostbuf.com/
Finbar	Menu bar searching utility	https://roeybiran.com/apps/finbar/
Finch	Open source container development tool	https://github.com/runfinch/finch
Find Any File	File finder	https://findanyfile.app/
Find Empty Folders	Finds empty folders	https://www.tempel.org/FindEmptyFolders
Find My Ports	Manager for open development ports and remote Vercel deployments	https://www.findmyports.com/
find-my-ports	Manager for open development ports and remote Vercel deployments	https://www.findmyports.com/
FinderGo	Open terminal quickly from Finder	https://github.com/onmyway133/FinderGo
FineTune	Per-application volume mixer, equalizer, and audio router	https://github.com/ronitsingh10/FineTune
Fing	Network scanner	https://www.fing.com/desktop/
Fing Desktop	Network scanner	https://www.fing.com/desktop/
Finicky	Utility for customizing which browser to start	https://github.com/johnste/finicky
Fire Alpaca	Digital painting software	https://firealpaca.com/
FireAlpaca	Digital painting software	https://firealpaca.com/
Firebase Admin	Admin user interface for Firebase	https://firebaseadmin.com/
firebase-admin	Admin user interface for Firebase	https://firebaseadmin.com/
firebird	TI Nspire calculator emulator	https://github.com/nspire-emus/firebird
firebird-emu	TI Nspire calculator emulator	https://github.com/nspire-emus/firebird
Firecamp	Multi-protocol API development platform	https://firecamp.io/
Firefly	Official wallet for IOTA	https://firefly.iota.org/
Firefly Shimmer	Official wallet for IOTA	https://firefly.iota.org/
Firefox	Web browser	https://www.mozilla.org/firefox/
Firefox Developer Edition	Web browser	https://www.mozilla.org/firefox/developer/
Firefox Nightly	Web browser	https://www.mozilla.org/firefox/channel/desktop/#nightly
firefox-cn	Chinese version of Firefox	https://www.firefox.com.cn/
Firestorm-Releasex64	Viewer for accessing Virtual Worlds	https://www.firestormviewer.org/
Fireworks	Particle effects editor	https://www.fireworksapp.xyz/
Firezone	Zero-trust access platform built on WireGuard	https://www.firezone.dev/
Fishing Funds	Display real-time trends of Chinese funds in the menubar	https://ff.1zilc.top/
Fission	Audio editor	https://rogueamoeba.com/fission/
Fitbit OS Simulator	Build apps and clock faces for Fitbit	https://dev.fitbit.com/
fixkey	Keyboard-focused AI copilot for writing	https://fixkey.ai/
Flacon	Open source audio file encoder	https://flacon.github.io/
Flame	Rendezvous service browser for iPhone / iPod touch	https://movieos.org/code/flame/
Flameshot	Screenshot software with built-in annotation tools	https://flameshot.org/
Flanders IP Remote Utility	Management of Flanders Scientific hardware	https://www.flandersscientific.com/ip-remote/
FlashSpace	Virtual workspace manager	https://github.com/wojciech-kulik/FlashSpace
FlClashX	Cross-platform proxy client based on ClashMeta	https://github.com/pluralplay/FlClashX
fldigi	Ham radio digital modem application	https://www.w1hkj.org/
fldigi-4.2.13	Ham radio digital modem application	https://www.w1hkj.org/
Fleet	Hybrid IDE and text editor	https://www.jetbrains.com/fleet/
FLEXOPTIX App	Connect to your FLEXBOX without cables and configure transceivers	https://www.flexoptix.net/en/flexoptix-app/#
Flic	Driver for the Flic bluetooth button	https://flic.io/applications/mac-app
Flick	Radial command wheel triggered by holding a key and flicking the mouse	https://getflick.dev/
Flickr Uploadr	Photo upload tool	https://www.flickr.com/tools/
FlightGear	Flight simulator	https://www.flightgear.org/
Flipper	Desktop debugging platform for mobile developers	https://fbflipper.com/
Fliqlo	Flip clock screensaver	https://fliqlo.com/
Flirc	IR USB receiver configurator	https://flirc.tv/
FlixTools	Downloads subtitles for movies	https://www.flixtools.com/
Flock	Business messaging and team collaboration app	https://flock.com/
Floorp	Privacy-focused Firefox-based browser	https://floorp.app/
Floorp browser	Privacy-focused Firefox-based browser	https://floorp.app/
Flow	Task and project management software	https://www.getflow.com/
flow5	Potential flow solver for preliminary aerodynamic and hydrofoil design	https://flow5.tech/flow5.html
FlowDown	AI agent	https://flowdown.ai/
FlowVision	Waterfall-style image viewer	https://flowvision.app/
flox	Manages environments across the software lifecycle	https://flox.dev/
flrig	Ham radio rig control	https://www.w1hkj.org/
flrig-2.0.12	Ham radio rig control	https://www.w1hkj.org/
Fluent Reader	RSS/Atom news aggregator	https://hyliu.me/fluent-reader/
Fluid	Tool to turn a website into a desktop app	https://fluidapp.com/
FluidVoice	Offline voice-to-text dictation app with AI enhancement	https://altic.dev/fluid
Fluor	Change the behavior of the fn keys depending on the active application	https://github.com/Pyroh/Fluor
Flutter SDK	UI toolkit for building applications for mobile, web and desktop	https://flutter.dev/
FlutterFlow	Visual development platform	https://flutterflow.io/
Flux	Screen colour temperature controller	https://justgetflux.com/
fly	Official CLI tool for Concourse CI	https://github.com/concourse/concourse
Flycast	Dreamcast, Naomi and Atomiswave emulator	https://github.com/flyinghead/flycast
Flycut	Clipboard manager for developers	https://github.com/TermiT/Flycut
FlyEnv	PHP and Web development environment manager	https://www.macphpstudy.com/
Flying Carpet	File transfer over ad-hoc wifi	https://github.com/spieglt/flyingcarpet
FlyingCarpet	File transfer over ad-hoc wifi	https://github.com/spieglt/flyingcarpet
FlyKey	One-click display of shortcuts	https://www.better365.cn/FlyKey.html
FMail	Unofficial native application for Fastmail	https://arievanboxel.fr/fmail/en/
FMail2	Unofficial native application for Fastmail	https://fmail.arievanboxel.fr/
FMail3	Unofficial native application for Fastmail	https://fmail3.appmac.fr/
fman	Dual-pane file manager	https://fman.io/
FME Form	Platform for integrating spatial data	https://www.safe.com/
Focu	Mindful productivity app	https://focu.app/
Focus	Website and application blocker	https://heyfocus.com/
Focus@Will	Personalised focus music	https://www.focusatwill.com/
FocusAny	Open source desktop toolbox	https://focusany.com/
focusatwill	Personalised focus music	https://www.focusatwill.com/
Focused	Markdown writing app	https://www.71squared.com/focused
Focusrite Control	Focusrite interface controller	https://focusrite.com/en
Focusrite Control 2	Focusrite interface controller for devices of the 4th generation and newer	https://focusrite.com/software/focusrite-control-2
Focusrite Saffire MixControl	Software for Focusrite products	https://focusrite.com/
FOKS	Federated Open Key Service; E2EE KV-store and Git hosting	https://foks.pub/
Folder Colorizer	Folder icon editor and manager	https://softorino.com/folder-colorizer-mac/
Folder Preview Pro	Quick Look extension for folders	https://anybox.ltd/folder-preview-pro
Folding@home	Graphical interface control for Folding	https://foldingathome.org/
Folding@home Client Beta	Protein folding simulation for scientific research	https://foldingathome.org/
FoldingText	Markdown text editor with productivity features	https://www.foldingtext.com/
Foldit	Protein folding computer game	https://fold.it/
Folo	Information browser	https://folo.is/
Folx	Download manager with a torrent client	https://mac.eltima.com/download-manager.html
Font Finagler	Help troubleshoot misbehaving fonts	https://markdouma.com/fontfinagler/
Font Smoothing Adjuster	Re-enable the font smoothing controls	https://github.com/bouncetechnologies/Font-Smoothing-Adjuster
FontBase	Font manager	https://fontba.se/
FontCreator	Font editor	https://www.high-logic.com/font-editor/fontcreator
FontForge	Font editor and converter for outline and bitmap fonts	https://fontforge.github.io/en-US/
FontGoggles	Font viewer for various font formats	https://fontgoggles.org/
Fontlab	Professional font editor	https://www.fontlab.com/font-editor/fontlab/
FontLab 8	Professional font editor	https://www.fontlab.com/font-editor/fontlab/
Fontra Pak	Browser-based font editor	https://fontra.xyz/
Fontstand	Font discovery and rental platform	https://fontstand.com/
foobar2000	Audio player	https://www.foobar2000.org/mac
Forecast	Podcast MP3 encoder with chapters	https://overcast.fm/forecast
Fork	GIT client	https://fork.dev/
Forkgram	Fork of Telegram Desktop	https://github.com/Forkgram/
ForkLift	Finder replacement and FTP, SFTP, WebDAV and Amazon s3 client	https://binarynights.com/
FOSSA	Zero-configuration polyglot dependency analysis tool	https://fossa.com/
Fotokasten	Create and buy photo products	https://www.fotokasten.de/
Foxglove	Visualisation and debugging tool for robotics	https://foxglove.dev/
Foxit PDF Editor	PDF Editor	https://www.foxit.com/pdf-editor/
Foxit Reader	PDF reader	https://www.foxit.com/pdf-reader/
Foxmail	Email client	https://www.foxmail.com/
Fractal Bot	Send and receive data to and from your Fractal Audio Systems products	https://www.fractalaudio.com/fractal-bot/
Fractal-Bot	Send and receive data to and from your Fractal Audio Systems products	https://www.fractalaudio.com/fractal-bot/
Frame0	Wireframing tool	https://frame0.app/
Framer	Tool that helps teams design every part of the product experience	https://www.framer.com/
Franz	Messaging app for WhatsApp, Facebook Messenger, Slack, Telegram and more	https://meetfranz.com/
Frappe Books	Book-keeping software for small businesses and freelancers	https://frappe.io/books/
fre:ac	Audio converter and CD ripper	https://www.freac.org/
freac	Audio converter and CD ripper	https://www.freac.org/
Free Download Manager	Download accelerator and organiser	https://www.freedownloadmanager.org/
Free Podcast Transcription	Transcribe Your Podcast	https://freepodcasttranscription.com/
Free Ruler	Horizontal and vertical rulers	https://www.pascal.com/freeruler
Free-GPGMail	Apple Mail plugin for GnuPG encrypted e-mails	https://github.com/Free-GPGMail/Free-GPGMail
Free42 Binary	HP-42S calculator simulator	https://thomasokken.com/free42/
Free42 Decimal	HP-42S calculator simulator	https://thomasokken.com/free42/
FreeCAD	3D parametric modeller	https://www.freecad.org/
FreeCol	Turn-based strategy game	https://www.freecol.org/
Freedom	App and website blocker	https://freedom.to/
FreeFileSync	Folder comparison and synchronization software	https://freefilesync.org/
Freelens	Kubernetes IDE	https://freelens.app/
FreeMacSoft AppCleaner	Application uninstaller	https://freemacsoft.net/appcleaner/
FreeOrion	Turn-based space empire and galactic conquest game	https://freeorion.org/
FreePDF	Reader that supports translating PDF documents	https://github.com/zstar1003/FreePDF
Freeplane	Mind mapping and knowledge management software	https://docs.freeplane.org/
FreeShow	Presentation software	https://freeshow.app/
FreeSurfer	Software suite for processing and analyzing brain MRI images	https://surfer.nmr.mgh.harvard.edu/
FreeTex	Free intelligent formula recognition software	https://xdxsb.top/FreeTex
FreeTube	YouTube player focusing on privacy	https://freetubeapp.io/
FreeYourMusic	Move playlists, tracks, and albums between music platforms	https://freeyourmusic.com/
Freeze	Amazon Glacier file transfer client	https://www.freezeapp.net/
Frescobaldi	LilyPond editor	https://frescobaldi.org/
Fresh	Keep your recently modified files at hand and up-to-date	https://ironicsoftware.com/fresh/
Frhelper	French-Chinese dictionary and learning tool	https://www.eudic.net/v4/fr/app/frhelper
Front	Customer communication platform	https://front.com/
Fruit Screensaver	Screensaver of the vintage Apple logo	https://github.com/Corkscrews/fruit
FS-UAE	Amiga emulator	https://fs-uae.net/
FS-UAE Launcher	Amiga emulator launcher	https://fs-uae.net/
FSMonitor	Visualize filesystem changes in realtime	https://fsmonitor.com/
FSNotes	Notes manager	https://fsnot.es/
fSpy	Still image camera matching	https://fspy.io/
FStream	WebRadio listener/recorder software	https://www.sourcemac.com/?page=fstream
FTB Electron App	Minecraft mod downloader and manager	https://www.feed-the-beast.com/
FTDI VCP Driver	Virtual COM port driver	https://ftdichip.com/drivers/vcp-drivers/
FTDIUSBSerialDextInstaller_1_5_0	Virtual COM port driver	https://ftdichip.com/drivers/vcp-drivers/
Fujifilm Pixel Shift Combiner	Tool to tether and combine photos for Fujifilm cameras with IBIS function	https://www.fujifilm-x.com/en-us/support/download/software/pixel-shift-combiner/
FUJIFILM TETHER APP	For Fujifilm GFX/X series camera tether shooting	https://www.fujifilm-x.com/en-us/support/download/software/tether-app/
FUJIFILM X RAW STUDIO	Convert RAW images captured with Fujifilm cameras	https://fujifilm-x.com/global/products/software/x-raw-studio/
FunctionFlip	Function key control	https://kevingessner.com/software/functionflip/
Funter	Shows hidden files and folders and switches their visibility in Finder	https://nektony.com/products/funter
Funter 7	Shows hidden files and folders and switches their visibility in Finder	https://nektony.com/products/funter
Furtherance	Time tracker	https://furtherance.app/
Fuse for Mac OS X	Port of the UNIX ZX Spectrum emulator Fuse	https://fuse-for-macosx.sourceforge.io/
Fuse for macOS/Fuse	Port of the UNIX ZX Spectrum emulator Fuse	https://fuse-for-macosx.sourceforge.io/
Fuse Fusetools	Visual desktop tool suite for working with the Fuse framework	https://fuse-open.github.io/
Fuse Open	Visual desktop tool suite for working with the Fuse framework	https://fuse-open.github.io/
Fuse Studio	Visual desktop tool suite for working with the Fuse framework	https://fuse-open.github.io/
FUSE-T	Kext-less implementation of FUSE	https://www.fuse-t.org/
Futubull	Trading application	https://www.futunn.com/
Futubull Legacy For Mac	Futubull trading application	https://www.futunn.com/
FutuNiuniu	Futubull trading application	https://www.futunn.com/
FutureRestore GUI	Graphical interface for FutureRestore	https://github.com/CoocooFroggy/FutureRestore-GUI/
Fuwari	Floating screenshot like a sticky	https://fuwari-app.com/
Fuwari v1.0.0/Fuwari	Floating screenshot like a sticky	https://fuwari-app.com/
FVim	GUI for the Neovim text editor	https://github.com/yatli/fvim
fx_cast Bridge	Bridge helper for fx_cast Firefox extension to enable Chromecast support	https://hensm.github.io/fx_cast/
FxFactory	Browse, install and purchase effects and plugins from a huge catalogue	https://fxfactory.com/
GalaxyBudsClient	Unofficial manager for the Buds, Buds+, Buds Live and Buds Pro	https://github.com/ThePBone/GalaxyBudsClient
Gama	IDE for building spatially explicit agent-based simulations	https://gama-platform.org/
GAMA Platform	IDE for building spatially explicit agent-based simulations	https://gama-platform.org/
GAMA Platform with embedded JDK	IDE for building spatially explicit agent-based simulations	https://gama-platform.org/
Game Capture HD	Elgato video capture and streaming app	https://www.elgato.com/ww/en/s/downloads
GameHub	Compatibility layer for running Windows and Steam games	https://www.gamemac.com/en
GameMaker	Complete development tool for making 2D games	https://gamemaker.io/
GameMaker Beta	Complete development tool for making 2D games	https://gamemaker.io/
GameMaker LTS 2026	Complete development tool for making 2D games	https://gamemaker.io/
Gamma Control	Per-screen colour adjustments	https://michelf.ca/projects/gamma-control/
GAMS	General Algebraic Modeling System	https://www.gams.com/
GanttProject	Gantt chart and project management application	https://www.ganttproject.biz/
Gaphor	UML/SysML modelling tool	https://gaphor.org/
GarageSale	Manage eBay Listings	https://www.iwascoding.com/GarageSale/
Gargoyle	IO layer for interactive fiction players	https://github.com/garglk/garglk
Garmin BaseCamp	3D mapping application	https://www.garmin.com/en-US/software/basecamp/
Garmin Connect IQ SDK	Build wearable experiences for Garmin devices and sensors with ConnectIQ SDK	https://developer.garmin.com/connect-iq/
Garmin Express	Update maps and software, sync with Garmin Connect and register your device	https://www.garmin.com/en-US/software/express
Gas Mask	Hosts file editor/manager	https://github.com/2ndalpha/gasmask/
Gather	Virtual video-calling space	https://gather.town/
Gather Town	Virtual video-calling space	https://gather.town/
Gauntlet	Open-source cross-platform application launcher	https://github.com/project-gauntlet/gauntlet
GB Studio	Drag and drop retro game creator	https://www.gbstudio.dev/
GCC ARM Embedded	Pre-built GNU bare-metal toolchain for 64-bit Arm processors	https://developer.arm.com/Tools%20and%20Software/GNU%20Toolchain
GCS	Character sheet editor for the GURPS Fourth Edition roleplaying game	https://gurpscharactersheet.com/
gcs	Character sheet editor for the GURPS Fourth Edition roleplaying game	https://gurpscharactersheet.com/
GDevelop	Open-source, cross-platform game engine designed to be used by everyone	https://gdevelop.io/
GDevelop 5	Open-source, cross-platform game engine designed to be used by everyone	https://gdevelop.io/
GDLauncher	Custom Minecraft Launcher	https://gdevs.io/
Geany	Small and lightweight IDE	https://www.geany.org/
Gearboy	Game Boy and Game Boy Color emulator	https://github.com/drhelius/Gearboy
Gearsystem	Sega Master System, Game Gear and SG-1000 emulator	https://github.com/drhelius/Gearsystem
GeburtstagsChecker	Check for and remind about upcoming birthdays	https://earthlingsoft.net/GeburtstagsChecker/
Geekbench	Tool to measure the computer system's performance	https://www.geekbench.com/
Geekbench 7	Tool to measure the computer system's performance	https://www.geekbench.com/
Geekbench AI	Cross-platform AI benchmark to evaluate AI workload performance	https://www.geekbench.com/ai/
GeekTool	Desktop customization tool	https://www.tynsoe.org/geektool/
GeForceNOW	Cloud gaming platform	https://www.nvidia.com/en-us/geforce-now/download/
Gemini	Native desktop AI assistant from Google	https://gemini.google/
Gemini 2	Disk space cleaner that finds and deletes duplicated and similar files	https://macpaw.com/gemini
Genealogical DNA Analysis Tool	App that utilises autosomal DNA to aid in the research of family trees	https://www.getgdat.com/
Geneious Prime	Bioinformatics software platform	https://www.geneious.com/
Genesis Plus	Sega Genesis/MegaDrive emulator	https://www.bannister.org/software/gplus.htm
Genesis Plus v1.3.5/Genesis Plus	Sega Genesis/MegaDrive emulator	https://www.bannister.org/software/gplus.htm
Genesys Cloud	Run Genesys Cloud as a stand-alone program, keeping it separate from web browser	https://apps.mypurecloud.com/directory-mac/
Genesys Cloud for macOS	Run Genesys Cloud as a stand-alone program, keeping it separate from web browser	https://apps.mypurecloud.com/directory-mac/
Genymotion	Android emulator	https://www.genymotion.com/
Genymotion Shell	Android emulator	https://www.genymotion.com/
GeoDa	Spatial analysis, statistics, autocorrelation and regression	https://geodacenter.github.io/
GeoGebra	Solve, save and share math problems, graph functions, etc	https://www.geogebra.org/
GeoGebra Classic 6	Solve, save and share math problems, graph functions, etc	https://www.geogebra.org/
GeoLibre Desktop	GIS platform	https://geolibre.app/
GeoMapApp	Browse, visualise and analyze geoscience data sets	https://www.geomapapp.org/
GeoTag	Geo location editor for images	https://www.snafu.org/GeoTag/
Geotag Photos Pro	Geotagging software	https://www.geotagphotos.net/
Geotag Photos Pro 2	Geotagging software	https://www.geotagphotos.net/
Geph	Modular Internet censorship circumvention system	https://geph.io/en
Gephi	Open-source platform for visualizing and manipulating large graphs	https://gephi.org/
Get API	HTTP Client	https://getapi.io/
Get Backup Pro 3	Backup software with folder synchronisation	https://www.belightsoft.com/products/getbackup/
Get iPlayer Automator	Download and watch BBC and ITV shows	https://github.com/Ascoware/get-iplayer-automator
Get Lyrical	Automatically add lyrics to songs in iTunes	https://shullian.com/get_lyrical.php
Get Lyrical/Get Lyrical	Automatically add lyrics to songs in iTunes	https://shullian.com/get_lyrical.php
GetAPI	HTTP Client	https://getapi.io/
gfxCardStatus	Menu bar app to monitor graphics card usage	https://gfx.io/
gg	GUI for Jujutsu	https://github.com/gulbanana/gg
GG	GUI for Jujutsu	https://github.com/gulbanana/gg
ghdl	VHDL 2008/93/87 simulator	https://ghdl.github.io/ghdl/
Ghost Browser	Web browser	https://ghostbrowser.com/
Ghost Downloader	Cross-platform multithreaded download manager	https://gd.xychr.com/
Ghostex	Workspace for running and reviewing multiple CLI coding agents	https://ghostex.dev/
GhostPepper	Speech-to-text and meeting transcription tool	https://github.com/matthartman/ghost-pepper
GhostTile	Hide your running applications from Dock	https://ghosttile.kernelpanic.im/
Ghostty	Terminal emulator that uses platform-native UI and GPU acceleration	https://ghostty.org/
GhostVM	Native macOS Virtual Machines for Apple Silicon	https://ghostvm.org/
Gifox	GIF recording and sharing	https://gifox.io/
gifox	GIF recording and sharing	https://gifox.io/
GIMP	Free and open-source image editor	https://www.gimp.org/
GIMP development version	Free and open-source image editor	https://www.gimp.org/
Gingko	Word processor that shows structure and content	https://gingkowriter.com/
Gisto	Snippets management desktop application	https://www.gisto.org/
Git Credential Manager	Cross-platform Git credential storage for multiple hosting providers	https://aka.ms/gcm
Git-it	Desktop app for learning Git and GitHub	https://github.com/jlord/git-it-electron
Git-it-Mac-x64/Git-it	Desktop app for learning Git and GitHub	https://github.com/jlord/git-it-electron
GitAhead	Git Client	https://github.com/gitahead/gitahead
GitBlade	Graphical client for Git	https://gitblade.com/
GitButler	Git client for simultaneous branches on top of your existing workflow	https://gitbutler.com/
GitComet	Git GUI	https://gitcomet.dev/
GitDifferent	Git client built around a three-way merge tool	https://vheissulabs.com/projects/gitdifferent
GitDock	Displays all your GitLab activities in one place	https://gitlab.com/mvanremmerden/gitdock
GitFiend	Git client	https://gitfiend.com/
GitFinder	Git client with Finder integration	https://gitfinder.com/
GitFit	Micro-workouts while waiting for AI code generation	https://git-fit.app/
Gitfox	Git client	https://www.gitfox.app/
GitHub Copilot	Native client for GitHub Copilot	https://github.com/github/app
GitHub Copilot CLI	Brings the power of Copilot coding agent directly to your terminal	https://docs.github.com/en/copilot/concepts/agents/about-copilot-cli
GitHub Copilot for Xcode	Xcode extension for GitHub Copilot	https://github.com/github/CopilotForXcode
GitHub Copilot Language Server	Language Server Protocol server for GitHub Copilot	https://github.com/github/copilot-language-server-release
GitHub Desktop	Desktop client for GitHub repositories	https://desktop.github.com/
Gitify	GitHub notifications on your menu bar	https://github.com/gitify-app/gitify
GitKraken	Git client focusing on productivity	https://www.gitkraken.com/
GitKraken CLI	CLI for GitKraken	https://github.com/gitkraken/gk-cli
GitKraken Serverless	Git client focusing on productivity	https://www.gitkraken.com/git-client/on-premise
GitLight	Desktop notifications for GitHub & GitLab	https://gitlight.app/
Gittyup	Graphical Git client	https://murmele.github.io/Gittyup/
gittyup	Graphical Git client	https://murmele.github.io/Gittyup/
GitUp	Git interface focused on visual interaction	https://gitup.co/
GitX	Git GUI	https://github.com/gitx/gitx
Glance	Utility to provide quick look previews for files that aren't natively supported	https://github.com/chamburr/glance
Glaze	Art style AI mimicry disruptor	https://glaze.cs.uchicago.edu/index.html
Glean	Workplace search and AI assistant	https://www.glean.com/glean-for-desktop
Glean Desktop	Workplace search and AI assistant	https://www.glean.com/glean-for-desktop
Glide	Tiling window manager with tree layouts	https://glidewm.org/
Glide Browser	Extensible, firefox-based web browser	https://glide-browser.app/
Glip	VOIP and message application	https://www.ringcentral.com/apps/rc-classic
GLKVM	App for controlling GL.iNet KVM devices	https://www.gl-inet.com/app-rm/
GLTFQuickLook	Quick Look plugin for glTF files	https://github.com/magicien/GLTFQuickLook
GlueMotion	Create and correct time lapse movies	https://neededapps.com/gluemotion/
Glyphs	Font editor	https://glyphsapp.com/
Glyphs 3	Font editor	https://glyphsapp.com/
Gmail Desktop	Unofficial Gmail desktop app	https://github.com/timche/gmail-desktop
Gnome	Menu bar GIF search and creation tool	https://lexfriedman.com/gnome/
GNS3	GUI for the Dynamips Cisco router emulator	https://www.gns3.com/
GNU Image Manipulation Program	Free and open-source image editor	https://www.gimp.org/
GNU TeXmacs	Scientific editing platform	https://www.texmacs.org/
GNU XaoS	Real-time interactive fractal zoomer	https://xaos-project.github.io/
Gnucash	Double-entry accounting program	https://www.gnucash.org/
GnuCash	Double-entry accounting program	https://www.gnucash.org/
Go Agent	Agent for the Go Continuous Delivery platform	https://www.gocd.org/
Go Git Service	Self-hosted Git service	https://gogs.io/
Go Server	Server for the Go Continuous Delivery platform	https://www.gocd.org/
Go2Shell	Opens a terminal window to the current directory in Finder	https://zipzapmac.com/go2shell
go2tv	Cast media files to Smart TVs and Chromecast devices	https://github.com/alexballas/go2tv
Go2TV	Cast media files to Smart TVs and Chromecast devices	https://github.com/alexballas/go2tv
Go64	Scan computer disk for 32-bit applications	https://www.stclairsoft.com/Go64/
GoCD Agent	Agent for the Go Continuous Delivery platform	https://www.gocd.org/
GoCD Server	Server for the Go Continuous Delivery platform	https://www.gocd.org/
Godot	2D and 3D game engine	https://godotengine.org/
Godot Engine	2D and 3D game engine	https://godotengine.org/
Godot_mono	C# scripting capable version of Godot game engine	https://godotengine.org/
Godspeed	Keyboard-focused todo manager	https://godspeedapp.com/
GOG Galaxy	Game client	https://www.gog.com/galaxy
GoLand	Go (golang) IDE	https://www.jetbrains.com/go/
Goland	Go (golang) IDE	https://www.jetbrains.com/go/
GoldenCheetah	Performance software for cyclists, runners and triathletes	https://www.goldencheetah.org/
GoldenPassport	Native implementation of Google Authenticator based on Swift3	https://github.com/stanzhai/GoldenPassport
Golly	Explore Conway's Game of Life and other types of cellular automata	https://golly.sourceforge.io/
Gologin	Antidetect browser	https://gologin.com/
Goneovim	Neovim GUI written in Golang, using a Golang qt backend	https://github.com/akiyosi/goneovim
goneovim-v0.6.17-macos-arm64/goneovim	Neovim GUI written in Golang, using a Golang qt backend	https://github.com/akiyosi/goneovim
GoNhanh	Vietnamese input method engine	https://github.com/khaphanspace/gonhanh.org
GoodSync	File synchronisation and backup software	https://www.goodsync.com/
Google Ads Editor	Managing your campaigns	https://ads.google.com/home/tools/ads-editor/
Google Analytics Opt Out	Prevent website visitor's data from being used by Google Analytics JavaScript	https://tools.google.com/dlpage/gaoptout
Google Antigravity	Agent orchestration platform	https://antigravity.google/product/antigravity-2
Google Antigravity CLI	Terminal interface for Antigravity agents	https://antigravity.google/product/antigravity-cli
Google Antigravity IDE	AI Coding Agent IDE	https://antigravity.google/product/antigravity-ide
Google Assistant	Cross-platform unofficial Google Assistant Client for Desktop	https://github.com/Melvin-Abraham/Google-Assistant-Unofficial-Desktop-Client
Google Assistant Unofficial Desktop Client	Cross-platform unofficial Google Assistant Client for Desktop	https://github.com/Melvin-Abraham/Google-Assistant-Unofficial-Desktop-Client
Google Chrome	Web browser	https://www.google.com/chrome/
Google Chrome Beta	Web browser	https://www.google.com/chrome/beta/
Google Chrome Canary	Web browser	https://www.google.com/chrome/canary/
Google Chrome Dev	Web browser	https://www.google.com/chrome/dev/
Google Cloud CLI	Set of tools to manage resources and applications hosted on Google Cloud	https://cloud.google.com/cli/
Google Drive	Client for the Google Drive storage service	https://www.google.com/drive/
Google Earth Pro	Virtual globe	https://www.google.com/earth/
Google Japanese Input Method Editor	Japanese input software	https://www.google.co.jp/ime/
Google Web Designer	Create interactive HTML5-based designs and motion graphics	https://www.google.com/webdesigner/
Goose	Open source, extensible AI agent that goes beyond code suggestions	https://block.github.io/goose/
GoPanda	Pandanet client	https://pandanet-igs.com/communities/gopanda2
GoPanda2	Pandanet client	https://pandanet-igs.com/communities/gopanda2
Gopher64	N64 emulator	https://github.com/gopher64/gopher64
GoTiengViet	Type Vietnamese conveniently, accurately, and quickly	https://www.trankynam.com/gotv/
GoToMeeting	Online meetings, desktop sharing, and video conferencing	https://www.goto.com/meeting
Goxel	Open Source Voxel Editor	https://goxel.xyz/
GPG Suite	Tools to protect your emails and files	https://gpgtools.org/
GPG Suite (without GPG Mail)	Tools to protect your files	https://gpgtools.org/
GPG Suite Nightly	Tools to protect your emails and files	https://gpgtools.org/
GPG Suite Pinentry	Pinentry GUI for GPG Suite	https://gpgtools.org/
GpgFrontend	OpenPGP/GnuPG crypto, sign and key management tool	https://gpgfrontend.bktus.com/
GPlates	Plate tectonics program	https://www.gplates.org/
GPlates/gplates	Plate tectonics program	https://www.gplates.org/
gPodder	Podcast client	https://gpodder.github.io/
GPT fdisk	Disk partitioning tool	https://sourceforge.net/projects/gptfdisk/
GPT4All	Run LLMs locally	https://www.nomic.ai/gpt4all/
GPXSee	GPS log file viewer and analyzer	https://www.gpxsee.org/
Gqrx	Software-defined radio receiver powered by GNU Radio and Qt	https://www.gqrx.dk/
GraalVM Java Development Kit	GraalVM from Oracle	https://www.graalvm.org/
GrADS	Access, manipulate, and visualise earth science data	http://cola.gmu.edu/grads/grads.php
Grafx2	256 colour painting program	https://pulkomandy.tk/projects/GrafX2
GrafX2	256 colour painting program	https://pulkomandy.tk/projects/GrafX2
Gram	Code editor focused on stability, without AI, subscriptions, or telemetry	https://gram-editor.com/
Grammarly Desktop	Grammarly for desktop	https://www.grammarly.com/desktop
Grammarly Installer	Grammarly for desktop	https://www.grammarly.com/desktop
Gramps	Genealogy software	https://gramps-project.org/blog/
GrandPerspective	Graphically shows disk usage within a file system	https://grandperspectiv.sourceforge.net/
GrandTotal	Create invoices and estimates	https://www.mediaatelier.com/GrandTotal/
Granola	AI-powered notepad for meetings	https://www.granola.ai/
Graphical Network Simulator 3	GUI for the Dynamips Cisco router emulator	https://www.gns3.com/
GraphicConverter	For browsing, enhancing and converting images	https://www.lemkesoft.de/en/products/graphicconverter/
GraphicConverter 12	For browsing, enhancing and converting images	https://www.lemkesoft.de/en/products/graphicconverter/
GraphPad Prism	Statistical analysis and graphing software	https://graphpad.com/
Gray	Tool to set light or dark appearance on a per-app basis	https://github.com/zenangst/Gray
Grayjay	Multi-platform video player	https://grayjay.app/desktop/
Grayjay desktop	Multi-platform video player	https://grayjay.app/desktop/
Green-GO Control	Configure and manage Green-GO intercom systems	https://www.greengodigital.com/
Greenery	Cryptocurrency bookkeeping and accounting wallet	https://www.greenery.finance/
Greenfoot	Teach object orientation with Java	https://www.greenfoot.org/home
GreenSignal	Pre-call check for camera, microphone, speaker, and network quality	https://mutedeck.com/tools/greensignal
gretl	Software package for econometric analysis	https://gretl.sourceforge.net/
Grid	Window manager	https://macgrid.app/
Grid Analysis and Display System	Access, manipulate, and visualise earth science data	http://cola.gmu.edu/grads/grads.php
Gridea	Static blog writing client	https://gridea.dev/
Grids	Instagram desktop application	https://gridsapp.net/
GridTracker2	Warehouse of amateur radio information presented in an easy to use interface	https://gridtracker.org/
Grisbi	Personal financial management program	https://www.grisbi.org/
Groestlcoin Core	Groestlcoin client and wallet	https://www.groestlcoin.org/groestlcoin-core-wallet/
Groestlcoin-Qt	Groestlcoin client and wallet	https://www.groestlcoin.org/groestlcoin-core-wallet/
Grok Bot	AI teammates that work across your apps and tools	https://x.ai/bot
Grok Build	Extensible coding agent for the terminal	https://x.ai/build
Groove OmniDialer	Outbound sales dialer for making and managing calls	https://www.groove.co/
GRS BlueWallet	Groestlcoin wallet and Lightning wallet	https://www.groestlcoin.org/grs-bluewallet/
GStreamer development package	Open Source Multimedia Framework	https://gstreamer.freedesktop.org/
GStreamer runtime package	Open Source Multimedia Framework	https://gstreamer.freedesktop.org/
gSwitch	Set which graphics card to use	https://codyschrank.github.io/gSwitch/
gtkwave	GTK+ based wave viewer	https://gtkwave.sourceforge.net/
GTKWave	GTK+ based wave viewer	https://gtkwave.sourceforge.net/
guijs	Graphical interface to manage JS projects	https://guijs.dev/
Guilded	Group chat platform	https://www.guilded.gg/
Guitar Pro	Sheet music editor software for guitar, bass, keyboards, drums and more	https://www.guitar-pro.com/
Gutenprint	Drivers for various printers for use with CUPS and GIMP	https://gimp-print.sourceforge.io/
GyazMail	Email client	https://gyazsquare.com/gyazmail/
Gyroflow	Video stabilization using gyroscope data	https://gyroflow.xyz/
GZDoom	Adds an OpenGL renderer to the ZDoom source port	https://github.com/ZDoom/gzdoom
Gõ Nhanh	Vietnamese input method engine	https://github.com/khaphanspace/gonhanh.org
HA Menu	Menu Bar app to perform common Home Assistant functions	https://github.com/codechimp-org/ha-menu
Hackintool	Hackintosh patching tool	https://github.com/headkaze/Hackintool
Hackolade	Polyglot data modelling software	https://hackolade.com/
Hacom Word Processor	Word processor	https://office.hancom.com/
HakuNeko	Manga and anime downloader and reader	https://hakuneko.download/
HakuNeko Desktop	Manga and anime downloader and reader	https://hakuneko.download/
HALion Sonic	Player for sample libraries, synthesizers and hybrid instruments	https://www.steinberg.net/vst-instruments/halion/sonic/
Halloy	IRC client	https://halloy.chat/
Hammerspoon	Desktop automation application	https://www.hammerspoon.org/
HAMRS Pro	Portable logger	https://hamrs.app/
Hancom Docs	Word processor	https://office.hancom.com/
HandBrake	Open-source video transcoder	https://handbrake.fr/
HandShaker	App for managing Android devices	https://www.smartisan.com/apps/
Handy	Speech to text application	https://handy.computer/
HapiGo	Application launcher and productivity software	https://www.hapigo.com/
Happ	Platform for building proxies to bypass network restrictions	https://www.happ.su/main/
Happy Hacking Keyboard Keymap Tool	Allows keymap customization on HHKB HYBRID Type-S and HYBRID models	https://happyhackingkb.com/
Happy Hacking Keyboard Studio Keymap Tool	Customize keymap, shortcuts, and gesture pad behavior on HHKB Studio	https://happyhackingkb.com/
happymac	Watches, suspends and resumes background processes that slow down your system	https://github.com/laffra/happymac
HappyMac	Watches, suspends and resumes background processes that slow down your system	https://github.com/laffra/happymac
Haptic Touch Bar	Add haptic feedback to Touch Bar buttons	https://www.haptictouchbar.com/
HapticKey	Trigger haptic feedback when tapping Touch Bar	https://github.com/niw/HapticKey
Haroopad	Markdown editor	http://pad.haroopress.com/
Harper	Grammar checker for developers	https://writewithharper.com/
Harper Desktop	Grammar checker for developers	https://writewithharper.com/
Harvest	Time tracking application	https://www.getharvest.com/apps/mac
Harzing Publish or Perish	Retrieves and analyzes academic citations	https://harzing.com/resources/publish-or-perish
HashBackup	Command-line backup program	https://www.hashbackup.com/hashbackup/
Hasselblad Phocus	RAW file image processing software for Hasselblad cameras	https://www.hasselblad.com/phocus/
Hazel	Automated organisation	https://www.noodlesoft.com/
HazeOver	Windows manager and desktop organiser	https://hazeover.com/
HBuilderX	HTML editor	https://www.dcloud.io/hbuilderx.html
HDFView	Tool for browsing and editing HDF files	https://www.hdfgroup.org/download-hdfview/
HDHomeRun	Client for HDHomeRun streamer	https://www.silicondust.com/support/downloads/
Headlamp	UI for Kubernetes	https://headlamp.dev/
Headroom	Reduce token usage for Claude Code and Codex	https://extraheadroom.com/
Headset	Music player powered by YouTube and Reddit	https://headsetapp.co/
Hearthstone Deck Tracker	Deck tracker and deck manager for Hearthstone	https://hsdecktracker.net/
Heaven	Performance and stability test for PC hardware	https://benchmark.unigine.com/heaven
Heaven Benchmark	Performance and stability test for PC hardware	https://benchmark.unigine.com/heaven
Hedgewars	Turn-based strategy, artillery, action and comedy game	https://hedgewars.org/
Hedy	AI-powered meeting coach	https://hedy.ai/
Hedy AI	AI-powered meeting coach	https://hedy.ai/
Height	All-in-one project management tool	https://height.app/
Heimdall Suite	Flash firmware onto Samsung mobile devices	https://glassechidna.com.au/heimdall/
Helio	Music composition software	https://helio.fm/
Helium	Chromium-based web browser	https://helium.computer/
HELO	Email tester and debugger	https://usehelo.com/
HelpWire Operator	Remote desktop controller	https://www.helpwire.app/
Hepta	Note-taking tool for visual learning	https://heptabase.com/
Heptabase	Note-taking tool for visual learning	https://heptabase.com/
Herd	Laravel and PHP development environment manager	https://herd.laravel.com/
Hermes	Open-source desktop AI agent	https://hermes-agent.nousresearch.com/desktop
Hermes Agent Desktop	Open-source desktop AI agent	https://hermes-agent.nousresearch.com/desktop
Hermit Crab	Run shell commands without leaving your current app	https://belkadan.com/hermitcrab/
Heroic	Game launcher	https://github.com/Heroic-Games-Launcher/HeroicGamesLauncher/
Heroic Games Launcher	Game launcher	https://github.com/Heroic-Games-Launcher/HeroicGamesLauncher/
Hex	Voice-to-text transcription and paste tool	https://hex.kitlangton.com/
Hex Fiend	Hex editor focussing on speed	https://hexfiend.com/
HEY	Access the HEY email service	https://hey.com/
Heynote	Dedicated scratchpad for developers	https://heynote.com/
HFSleuth	HFS+/HFSX file system inspection tool	https://newosxbook.com/tools/hfsleuth.html
Hidden Bar	Utility to hide menu bar items	https://github.com/dwarvesf/hidden/
Hides	App to hide all open apps except the current one	https://hides.sweetpproductions.com/
HiDock	Set custom Dock settings for when on different displays	https://hidock.app/
Highlight	Context-aware AI assistant	https://highlightai.com/
HighTop	File access via the menu bar	https://hightop.app/
HistoryHound	Browser history and bookmarks keyword search	https://www.stclairsoft.com/HistoryHound/
Hive	AI agent orchestrator for parallel coding across projects	https://github.com/morapelker/hive
HMA! VPN	VPN program from Hide My Ass	https://www.hidemyass.com/index.html
Hola VPN	Peer-to-peer VPN	https://hola.org/
HolaVPN2E	Peer-to-peer VPN	https://hola.org/
Home Assistant	Companion app for Home Assistant home automation software	https://companion.home-assistant.io/
Homebrew	Homebrew's official GUI	https://github.com/Homebrew/BrewUI
Homerow	Keyboard shortcuts for every button on your screen	https://www.homerow.app/
honto	Ebook reader for the honto store	https://honto.jp/ebook/dlinfo.html
honto view app	Ebook reader for the honto store	https://honto.jp/ebook/dlinfo.html
hontoビューアアプリ	Ebook reader for the honto store	https://honto.jp/ebook/dlinfo.html
Hook	Link and retrieve key information	https://hookproductivity.com/
Hookmark	Link and retrieve key information	https://hookproductivity.com/
HOP	View and edit HWP documents	https://golbin.github.io/hop/
Hopper Disassembler	Reverse engineering tool that lets you disassemble, decompile and debug your app	https://www.hopperapp.com/
Hoppscotch	Open source API development ecosystem	https://hoppscotch.com/
Hoppscotch SelfHost	Desktop client for SelfHost version of the Hoppscotch API development ecosystem	https://hoppscotch.com/
HopToDesk	Remote desktop and remote support tool with end-to-end encryption	https://www.hoptodesk.com/
Horos	Medical image viewer	https://horosproject.org/
HostsX	Local hosts update tool	https://github.com/ZzzM/HostsX
Hot	Menu bar application that displays the CPU speed limit due to thermal issues	https://github.com/macmade/Hot
HoudahSpot	File searching application	https://www.houdah.com/houdahSpot/
Hovrly	Display and convert timezones time in different cities	https://hovrly.com/
HP Easy Admin	Tool to directly download HP printing and/or scanning drivers	https://support.hp.com/
HP Easy Start	Set up your HP printer	https://support.hp.com/
HP Prime	Graphing calculator emulator	https://www.hp.com/us-en/calculators.html
HP Printer Drivers	HP printing and scanning software	https://support.apple.com/kb/DL1888
HSTong	Trading platform	https://www.vbkr.com/
HSTracker	Deck tracker and deck manager for Hearthstone	https://hsdecktracker.net/
HTML Mangareader	Lightweight offline CBZ/CBR and image viewer with full continuous scrolling	https://github.com/luejerry/html-mangareader
HTTP Toolkit	HTTP(S) debugging proxy, analyzer, and client	https://httptoolkit.tech/
HTTPie	Testing client for REST, GraphQL, and HTTP APIs	https://httpie.io/product
HTTPie for Desktop	Testing client for REST, GraphQL, and HTTP APIs	https://httpie.io/product
Hubstaff	Work time tracker	https://hubstaff.com/
HuggingChat	Chat client for models on HuggingFace	https://github.com/huggingface/chat-macOS
Hugin	Panorama photo stitcher	https://hugin.sourceforge.io/
Huly	All-in-One Project Management Platform	https://huly.io/
Hummingbird	OpenVPN 3 client	https://airvpn.org/hummingbird
Hush	Block nags to accept cookies and privacy invasive tracking in Safari	https://oblador.github.io/hush/
HY-RPE2	8 track midi sequencer plugin	https://hy-plugins.com/product/hy-rpewin-mac/
Hydrogen	Drum machine and sequencer	http://www.hydrogen-music.org/
Hydrus Network	Booru-style media tagger	https://hydrusnetwork.github.io/hydrus/
hydrus network	Booru-style media tagger	https://hydrusnetwork.github.io/hydrus/
Hype4	App to create animated and interactive web content	https://tumult.com/hype/
Hyper	Terminal built on web technologies	https://hyper.is/
HyperBackupExplorer	Backup data from a Synology NAS	https://www.synology.com/en-us/dsm/feature/hyper_backup
HyperConnect	Cross-device interconnection service for the Xiaomi ecosystem	https://hyperos.mi.com/continuity
Hyperkey	Convert your caps lock key or any of your modifier keys to the hyper key	https://hyperkey.app/
HyperWhisper	AI-powered speech-to-text transcription	https://hyperwhisper.com/
Hytale	Official Hytale Launcher	https://hytale.com/
Hytale Launcher	Official Hytale Launcher	https://hytale.com/
i1Profiler	Automation and creative controls for photographers and designers	https://www.xrite.com/service-support/product-support/formulation-and-qc-software/i1profiler
i1Publish	Automation and creative controls for photographers and designers	https://www.xrite.com/service-support/product-support/formulation-and-qc-software/i1profiler
iA Markdown Dictionary	Markdown dictionary for Dictionary.app	https://ia.net/topics/ia-markdown-dictionary
iA Presenter	Create presentation slides from a Markdown document	https://ia.net/presenter
iaito	GUI for radare2	https://www.radare.org/n/iaito.html
iBabel	GUI for the cheminformatics toolkit OpenBabel	https://macinchem.org/ibabel/
iBackup Viewer	Extract Data from iPhone Backups	https://www.imactools.com/iphonebackupviewer/
iBackupBot	Backup manager for iTunes	https://www.icopybot.com/itunes-backup-manager.htm
iBetterCharge	Battery level monitoring software	https://softorino.com/ibettercharge/
IBKR Desktop	Trading software	https://www.interactivebrokers.com/
IBM Aspera Connect	Facilitate uploads and downloads with an Aspera transfer server	https://www.ibm.com/aspera/connect/
IBM Cloud CLI	Command-line API client	https://cloud.ibm.com/docs/cli/index.html
IBM Notifier	Agent that displays custom notifications and alerts to end users	https://github.com/IBM/mac-ibm-notifications
IBM Semeru Runtime (JDK 11) Open Edition	Production-ready JDK with the OpenJDK class libraries and the Eclipse OpenJ9 JVM	https://developer.ibm.com/languages/semeru-runtimes/
IBM Semeru Runtime (JDK 17) Open Edition	Production-ready JDK with the OpenJDK class libraries and the Eclipse OpenJ9 JVM	https://developer.ibm.com/languages/semeru-runtimes/
IBM Semeru Runtime (JDK 21) Open Edition	Production-ready JDK with the OpenJDK class libraries and the Eclipse OpenJ9 JVM	https://developer.ibm.com/languages/semeru-runtimes/
IBM Semeru Runtime (JDK 25) Open Edition	Production-ready JDK with the OpenJDK class libraries and the Eclipse OpenJ9 JVM	https://developer.ibm.com/languages/semeru-runtimes/
IBM Semeru Runtime (JDK 8) Open Edition	Production-ready JDK with the OpenJDK class libraries and the Eclipse OpenJ9 JVM	https://developer.ibm.com/languages/semeru-runtimes/
IBM Semeru Runtime (JDK) Open Edition	Production-ready JDK with the OpenJDK class libraries and the Eclipse OpenJ9 JVM	https://developer.ibm.com/languages/semeru-runtimes/
iBored	Hex editor	https://apps.tempel.org/iBored/
iCab	Alternative web browser	https://www.icab.de/
iCab 6.3.7/iCab	Alternative web browser	https://www.icab.de/
iCanHazShortcut	Shortcut manager	https://icanhazapps.d7.wtf/shortcut
Ice	Menu bar manager	https://icemenubar.app/
Iceberg	Integrated packaging environment	http://s.sudre.free.fr/Software/Iceberg.html
icestudio	Visual editor for open FPGA board	https://icestudio.io/
iCollections	App to help keep the desktop organised	https://naarakstudio.com/icollections/
Icon Composer	Apple tool to create multi-platform icons	https://developer.apple.com/icon-composer/
Icon Shelf	Icon manager for web developers	https://icon-shelf.github.io/
IconChamp	Icon theming app for Big Sur and Monterey	https://www.macenhance.com/iconchamp
IconChanger	Change your app's icon	https://github.com/underthestars-zhy/IconChanger
IconChanger 2022-12-22 11-45-17/IconChanger	Change your app's icon	https://github.com/underthestars-zhy/IconChanger
Iconizer	Xcode asset catalog creator	https://raphaelhanneken.com/iconizer/
IconJar	Icon organiser	https://geticonjar.com/
Iconscout	Desktop toolbar for Iconscout	https://iconscout.com/
Iconset	Organise icon sets and packs in one place	https://iconset.io/
ID3 Editor	MP3 and AIFF ID3 tag editor	http://www.pa-software.com/id3editor/
IDAGIO	Classical music streaming app	https://www.idagio.com/
ideaMaker	FDM 3D Printing Slicer by Raise3D	https://www.raise3d.com/ideamaker/
idevice_pair	Generate pair records for iOS devices	https://github.com/jkcoxson/idevice_pair
iDrive	Cloud backup and storage solution	https://www.idrive.com/
IEM Plug-in Suite	Ambisonic audio plug-in suite up to 7th order as VST2, LV2 and Standalones	https://plugins.iem.at/
iExplorer	iOS device backup software and file manager	https://macroplant.com/iexplorer
iFunBox	File management software for iPhone and other Apple products	https://www.i-funbox.com/
IG:dm	Desktop application for Instagram DMs	https://igdm.me/
IGdm	Desktop application for Instagram DMs	https://igdm.me/
IGV_2.19.8	Visual exploration of genomic data	https://igv.org/doc/desktop/
IINA	Free and open-source media player	https://iina.io/
IINA+	Extra danmaku support for iina (iina 弹幕支持)	https://github.com/xjbeta/iina-plus
IIT Certification	Program of the EDI Provider of the State Tax Service of Ukraine	https://iit.com.ua/
IIT Certification Signature	Program of the EDI Provider of the State Tax Service of Ukraine for web browsers	https://iit.com.ua/
IK Product Manager	Tool for downloading and authorising IK Multimedia software	https://www.ikmultimedia.com/products/productmanager/
iloader	iOS Sideloading Companion	https://iloader.app/
iLok License Manager	Software for iLok devices	https://ilok.com/#!license-manager
ILSpy	Avalonia-based .NET decompiler	https://github.com/icsharpcode/AvaloniaILSpy
Ilya Birman Typography Layout	Typography keyboard layout	https://ilyabirman.ru/typography-layout/
Image2Icon	Icon creator and file and folder customiser	https://www.img2icnsapp.com/
ImageJ	Image Processing and Analysis in Java	https://imagej.net/ij/
ImageOptim	Tool to optimise images to a smaller size	https://imageoptim.com/mac
ImageX	Visually explore and search an image collection	https://visual-computing.com/projects/imagex
iMazing	iPhone management application	https://imazing.com/
iMazing Converter	Free tool to convert HEIC to JPEG and HEVC to MP4	https://imazing.com/converter
iMazing Profile Editor	Apple Device Configuration Profile Editor	https://imazing.com/profile-editor
ImHex	Hex editor for reverse engineers	https://imhex.werwolv.net/
Impactor	Sideloading application for iOS/tvOS	https://github.com/khcrysalis/Impactor/
INAV Configurator	Configuration tool for the INAV flight control system	https://github.com/iNavFlight/inav-configurator/
incident.io	Incident management platform	https://incident.io/
incy	Proxy client	https://incy.cc/
INCY	Proxy client	https://incy.cc/
InfiniDesk	Create multiple virtual desktops, each with unique files, wallpaper and widgets	https://infinidesk.app/
Infinity	Customizable work management platform	https://startinfinity.com/
Infocert Sign Desktop International	Digital signature and time stamp app, International Edition	https://infocert.digital/consumer/infocert-sign-suite/
Inform	Writing system for interactive fiction based on natural language	https://ganelson.github.io/inform-website
Infra	Kubernetes desktop client	https://infra.app/
infra	Kubernetes desktop client	https://infra.app/
Inkdown	WYSIWYG Markdown editor	https://www.inkdown.me/
Inkdrop	Markdown editor	https://www.inkdrop.app/
Inkscape	Vector graphics editor	https://inkscape.org/
Inkstitch	Inkscape extension for machine embroidery design	https://inkstitch.org/
Inky	Editor for ink: inkle's narrative scripting language	https://www.inklestudios.com/ink/
INLOOPX QLPlayground	Quick Look generator for Xcode Playgrounds	https://github.com/inloop/qlplayground
inMusic Software Center	Administration tool for inMusic brand creative software	https://www.airmusictech.com/downloads/
input	Keyboard configurator for Work Louder devices	https://worklouder.cc/input
Input	Keyboard configurator for Work Louder devices	https://worklouder.cc/input
Input 0	Voice input tool with AI transcription	https://input0.com/
Input Source Pro	Tool for multi-language users	https://inputsource.pro/
Input0	Voice input tool with AI transcription	https://input0.com/
inso	CLI HTTP and GraphQL Client	https://insomnia.rest/products/inso
Insomnia	HTTP and GraphQL Client	https://insomnia.rest/
inSSIDer	Defeat slow wifi	https://www.metageek.com/products/inssider/
Insta360 Link Controller	Controller for Insta360 webcams	https://www.insta360.com/
Insta360 Studio	Video and photo editor	https://www.insta360.com/
Install Box Tools.app/Contents/Resources/Box Device Trust	Create and edit any file directly from a web browser	https://www.box.com/resources/downloads
Install Box Tools.app/Contents/Resources/Box Edit	Create and edit any file directly from a web browser	https://www.box.com/resources/downloads
Install Box Tools.app/Contents/Resources/Box Local Com Server	Create and edit any file directly from a web browser	https://www.box.com/resources/downloads
Install Box Tools.app/Contents/Resources/Box Tools Custom Apps	Create and edit any file directly from a web browser	https://www.box.com/resources/downloads
Install Disk Creator	Utility to create bootable system install discs	https://macdaddy.io/install-disk-creator/
Instatus Out	Monitor services in your menu bar	https://instatus.com/out
Insync	Manage your Google Drive and OneDrive files	https://www.insynchq.com/
Integrative Genomics Viewer (IGV)	Visual exploration of genomic data	https://igv.org/doc/desktop/
Integrity	Tool to scan a website checking for broken links	https://peacockmedia.software/mac/integrity/
IntelliDock	Hides the Dock when it is overlapped by a window	https://mightymac.app/intellidock/
IntelliJ HTTP Client CLI	HTTP client from JetBrains IDEs available as a standalone CLI tool	https://www.jetbrains.com/ijhttp/download
IntelliJ IDEA	Java IDE by JetBrains	https://www.jetbrains.com/idea/
IntelliJ IDEA CE	IDE for Java development - community edition	https://www.jetbrains.com/idea/
IntelliJ IDEA Community Edition	IDE for Java development - community edition	https://www.jetbrains.com/idea/
IntelliJ IDEA EAP	IntelliJ IDEA Early Access Program	https://www.jetbrains.com/idea/nextversion
IntelliJ IDEA OSS	Open-source edition of IntelliJ IDEA	https://github.com/JetBrains/intellij-community
IntelliJ IDEA Ultimate	Java IDE by JetBrains	https://www.jetbrains.com/idea/
Interact Scratchpad	Menu bar utility to create contacts from snippets of text	https://docs.getdrafts.com/docs/misc/interact-scratchpad
Internxt Drive	Client for Internxt file storage service	https://internxt.com/drive
Intiface Central	Frontend application for the Buttplug sex toy control library	https://github.com/intiface/intiface-central
InVesalius	3D medical imaging reconstruction software	https://github.com/invesalius/invesalius3/
Invisor Lite	Media file inspector	https://www.invisorapp.com/
Invoker	Utility for managing Laravel applications	https://invoker.dev/
ioquake3	First person shooter engine	https://ioquake3.org/
iOS App Signer	App for (re)signing iOS apps and bundling them	https://dantheman827.github.io/ios-app-signer/
IP in menu bar	Shows current IP address in menu bar	https://www.monkeybreadsoftware.de/Software/IPinmenubar.shtml
ipaverse	App Store package downloader, IPA re-signer, and security analysis toolkit	https://github.com/bahattinkoc/ipaverse
Ipe	Drawing editor for creating figures in PDF format	https://ipe.otfried.org/
IpePresenter	Make presentations from PDFs	https://ipepresenter.otfried.org/
IPFS Desktop	Menu bar application for the IPFS peer-to-peer network	https://github.com/ipfs/ipfs-desktop
iPlay	Multimedia player	https://iplay.saltpi.cn/
IPRemoteUtility	Management of Flanders Scientific hardware	https://www.flandersscientific.com/ip-remote/
IPSecuritas	IPSec client	https://www.lobotomo.com/products/IPSecuritas/
IPTVnator	Open Source m3u, m3u8 player	https://github.com/4gray/iptvnator
IPVanish	VPN client	https://www.ipvanish.com/
IPVanish VPN	VPN client	https://www.ipvanish.com/
ipynb-quicklook	Quick Look plugin for Jupyter/IPython notebooks	https://github.com/tuxu/ipynb-quicklook
IQmol	Free open-source molecular editor and visualization package	https://www.iqmol.org/
iReal Pro	Music book & backing tracks	https://irealpro.com/
Iridium	Web browser focusing on security and privacy	https://iridiumbrowser.de/
Iridium Browser	Web browser focusing on security and privacy	https://iridiumbrowser.de/
Iris	Blue light filter and eye protection software	https://iristech.co/iris/
Iriun	Use your phone's camera as a wireless webcam	https://iriun.com/
IRPF 2023	Fill your Tax Report (DIRPF) for the Brazilian Revenue Service (RFB)	https://www.gov.br/receitafederal/pt-br/centrais-de-conteudo/download/pgd/dirpf
IRPF 2024	Fill your Tax Report (DIRPF) for the Brazilian Revenue Service (RFB)	https://www.gov.br/receitafederal/pt-br/centrais-de-conteudo/download/pgd/dirpf
IRPF 2025	Fill your Tax Report (DIRPF) for the Brazilian Revenue Service (RFB)	https://www.gov.br/receitafederal/pt-br/centrais-de-conteudo/download/pgd/dirpf
Isabelle	Generic proof assistant	https://www.cl.cam.ac.uk/research/hvg/Isabelle/
ishare	Screenshot capture utility	https://github.com/castdrian/ishare/
iShowU Instant	Realtime screen recording	https://www.shinywhitebox.com/ishowu-instant
iSimulator	Utility to control and manage the Simulator	https://github.com/wigl/iSimulator
iSlide	PPT-based plug-in tool	https://www.islide.cc/
iStat Menus	System monitoring app	https://bjango.com/mac/istatmenus/
iStat Server	Transmits computer or server’s vital statistics	https://bjango.com/istatserver/
iStatistica Core	System monitoring for Apple Silicon	https://www.imagetasks.com/istatistica/core/
iStats Menus	System monitoring app	https://bjango.com/mac/istatmenus/
IsThereNet	Your internet connection status at a glance	https://lowtechguys.com/istherenet/
iSubtitle	Inject subtitle tracks, chapter markers and metadata into your media	https://www.bitfield.se/isubtitle/
iSyncer	Apple Music playlist exporting tool	https://www.isyncer.de/
Itau	Banking & credit card management	https://www.itau.com.br/computador/
itch	Game client for itch.io	https://itch.io/app
iTerm	Terminal emulator as alternative to Apple's Terminal app	https://iterm2.com/
iTerm2	Terminal emulator as alternative to Apple's Terminal app	https://iterm2.com/
iTerm2 AI Plugin	Enable generative AI features in iTerm2	https://iterm2.com/ai-plugin.html
iTerm2 Browser Plugin	Enables an integrated web browser in iTerm2	https://iterm2.com/browser-plugin.html
iTerm2 Companion Plugin	Pairs iTerm2 with the iTerm2 Companion iPhone app	https://iterm2.com/companion-plugin.html
iTermAI	Enable generative AI features in iTerm2	https://iterm2.com/ai-plugin.html
iTermBrowserPlugin	Enables an integrated web browser in iTerm2	https://iterm2.com/browser-plugin.html
iTermCompanion	Pairs iTerm2 with the iTerm2 Companion iPhone app	https://iterm2.com/companion-plugin.html
ITK-SNAP	Segment structures in 3D medical images	https://www.itksnap.org/pmwiki/pmwiki.php
ITraffic	Monitor for displaying process traffic on status bar	https://github.com/foamzou/ITraffic-monitor-for-mac
itraffic	Monitor for displaying process traffic on status bar	https://github.com/foamzou/ITraffic-monitor-for-mac
iTrunSo	Transfer files over local network	https://mfiles.maokebing.com/
Itsycal	Menu bar calendar	https://www.mowglii.com/itsycal/
Itsypad	Tiny, fast scratchpad and clipboard manager	https://github.com/nickustinov/itsypad-macos
Itsytv	Menu bar app for controlling your Apple TV	https://itsytv.app/
iTunes Producer	Submit book details, pricing, and files to Apple Books	https://itunespartner.apple.com/books/tools
Ivacy	VPN client	https://www.ivacy.com/
Ivideon Client	Watch surveillance videos in your browser via your Ivideon account	https://www.ivideon.com/
IvideonServer	Watch surveillance videos in your browser via your Ivideon account	https://www.ivideon.com/
iVolume	App to ensures that all songs are played at the same volume level	https://www.mani.de/en/ivolume/
IVPN	VPN client	https://www.ivpn.net/en/apps-macos
iZip	App to manage ZIP, ZIPX, RAR, TAR, 7ZIP and other compressed files	https://www.izip.com/
Izotope product portal	Professional audio software for audio recording, mixing, broadcast and others	https://www.izotope.com/en/products/downloads.html
J	Programming language for mathematical, statistical and logical analysis of data	https://www.jsoftware.com/
j9.7/jbrk	Programming language for mathematical, statistical and logical analysis of data	https://www.jsoftware.com/
j9.7/jcon	Programming language for mathematical, statistical and logical analysis of data	https://www.jsoftware.com/
j9.7/jqt	Programming language for mathematical, statistical and logical analysis of data	https://www.jsoftware.com/
Jabra Direct	Optimise and personalise your Jabra headset	https://www.jabra.com/software-and-services/jabra-direct
JabRef	Reference manager to edit, manage and search BibTeX files	https://www.jabref.org/
Jagex	Official Jagex Launcher	https://www.jagex.com/
Jaikoz	Audio tag editor	https://www.jthink.net/jaikoz/
Jalview	Multiple sequence alignment editor, visualiser, analysis and figure generator	https://www.jalview.org/
Jameica	Application-platform written in Java containing a SWT-UI	https://www.willuhn.de/products/jameica/
Jami	Decentralised instant messenger and softphone	https://jami.net/
Jamie	AI-powered meeting notes	https://www.meetjamie.ai/
JamKazam	Low-latency rehearsing, jamming and performing	https://jamkazam.com/
jamovi	Statistical software	https://www.jamovi.org/
Jamulus	Play music online with friends	https://jamulus.io/
JamulusServer	Play music online with friends	https://jamulus.io/
Jan	Offline AI chat tool	https://jan.ai/
JANDI	Desktop app for the JANDI collaboration platform	https://www.jandi.com/landing/
jandi	GitHub contributions in your status bar	https://github.com/techinpark/Jandi
JASP	Statistical analysis application	https://jasp-stats.org/
Jasper	Issue reader for GitHub	https://jasperapp.io/
JazzUp	Plays sound effects as you type	https://www.irradiatedsoftware.com/labs/
Jazz² Resurrection	Open-source re-implementation of Jazz Jackrabbit 2 game engine	https://de4th.dev/jazz2/
JBrowse	Genome browser	https://jbrowse.org/
JBrowse 2	Genome browser	https://jbrowse.org/
jclasslib bytecode viewer	Visualise all aspects of compiled Java class files and the contained bytecode	https://github.com/ingokegel/jclasslib
JCrypTool	Apply and analyze cryptographic algorithms	https://www.cryptool.org/en/jct/downloads
JD-GUI	Standalone Java Decompiler GUI	https://java-decompiler.github.io/
jd-gui-osx-1.6.6/JD-GUI	Standalone Java Decompiler GUI	https://java-decompiler.github.io/
JDiskReport	Disk usage utility	https://www.jgoodies.com/freeware/jdiskreport/
JDiskReport 1.4.1/JDiskReport	Disk usage utility	https://www.jgoodies.com/freeware/jdiskreport/
JDK Mission Control	Tools to manage, monitor, profile and troubleshoot Java applications	https://jdk.java.net/jmc/9/
JDownloader	Download manager	https://jdownloader.org/
jEdit	Text editor	https://www.jedit.org/
Jedit Ω	Text editor	https://www.artman21.com/en/sparkle/jeditomega.html
Jellyfin	Media system	https://jellyfin.org/
Jellyfin Media Player	Jellyfin desktop client	https://jellyfin.org/
JET Pilot	Kubernetes desktop client	https://www.jet-pilot.app/
JetBrains Air	Agentic development environment	https://air.dev/
JetBrains Gateway	Remote development gateway by Jetbrains	https://www.jetbrains.com/remote-development/gateway/
JetBrains MPS	Create your own domain-specific language	https://www.jetbrains.com/mps/
JetBrains PhpStorm	PHP IDE by JetBrains	https://www.jetbrains.com/phpstorm/
Jetbrains PyCharm Community Edition	IDE for Python programming - Community Edition	https://www.jetbrains.com/pycharm/
Jetbrains PyCharm Educational Edition	Professional IDE for scientific and web Python development	https://www.jetbrains.com/pycharm-edu/
JetBrains Rider	.NET IDE	https://www.jetbrains.com/rider/
JetBrains Space	Team communication and collaboration software	https://www.jetbrains.com/space/
JetBrains Toolbox	JetBrains tools manager	https://www.jetbrains.com/toolbox-app/
jetbrains-gateway	Remote development gateway by Jetbrains	https://www.jetbrains.com/remote-development/gateway/
JetDrive Toolbox	Helper for Transcend SSDs and expansion cards	https://www.transcend-info.com/Support/Software-181/
Jettison	Automatically ejects external drives	https://stclairsoft.com/Jettison/
JewelryBox	RVM manager	https://github.com/remear/jewelrybox
JGR's OpenTTD Patchpack	Collection of patches applied to OpenTTD	https://github.com/JGRennison/OpenTTD-patches/
jgrasp	IDE with visualisations for improving software comprehensibility	https://jgrasp.org/
Jianying Pro	Free all-in-one video editor	https://www.capcut.cn/
JiBA	Apple Music metadata localisation tool	https://jiba.hee.ink/
Jiggler	Keep your computer awake	https://www.sticksoftware.com/software/Jiggler.html
Jitouch	Multi-touch gestures editor	https://www.jitouch.com/
Jitsi	Open-source video calls and chat	https://desktop.jitsi.org/
Jitsi Meet	Secure video conferencing app	https://github.com/jitsi/jitsi-meet-electron/
JLCONE	Desktop client for JLCPCB quoting, ordering and order tracking	https://jlcone.com/download
jlutil	Property list utility	https://newosxbook.com/tools/simplistic.html
jmc	Media organiser	https://github.com/jcm93/jmc
jmc-9.1.2_macos-aarch64/JDK Mission Control	Tools to manage, monitor, profile and troubleshoot Java applications	https://jdk.java.net/jmc/9/
JollysFastVNC	Control computers fast and securely from anywhere	https://www.jinx.de/JollysFastVNC.html
Joplin	Note taking and to-do application with synchronisation capabilities	https://joplinapp.org/
JOSM	Extensible editor for OpenStreetMap	https://josm.openstreetmap.de/
JOSM_25_arm64	Extensible editor for OpenStreetMap	https://josm.openstreetmap.de/
Jottacloud	Client for the Jottacloud cloud storage service	https://jottacloud.com/
Journey	Diary app	https://2appstudio.com/journey/
JProfiler	Java profiler	https://www.ej-technologies.com/jprofiler
JQuake	Real-time earthquake monitoring software for Japan	https://jquake.net/
JRiver Media Center	Media manager and player	https://www.jriver.com/index.html
JSON Viewer	App to visualise, validate and format JSON datasets	https://jsonviewer.app/
JT-Bridge	Acts as a bridge between WSJT-X and ham radio logging application	https://jt-bridge.eller.nu/
Jubler	Subtitle editor	https://www.jubler.org/
Juice	Make your battery information a bit more interesting	https://github.com/brianmichel/Juice
Juicy	Menu bar battery monitor with custom charge alerts and health tracking	https://getjuicy.app/
Jukebox	Menu bar song viewer	https://www.jaysce.dev/projects/jukebox
Julia	Programming language for technical computing	https://julialang.org/
Julia Nightly	Programming language for technical computing	https://julialang.org/
Julia-1.10	Programming language for technical computing	https://julialang.org/
Julia-1.13	Programming language for technical computing	https://julialang.org/
Jump Desktop	Remote desktop application	https://jumpdesktop.com/#jdmac
Jump Desktop Connect	Remote desktop app	https://jumpdesktop.com/connect/
JumpCloud Password Manager	Password management tool that provides authentication, sharing and credentials	https://cdn.pwm.jumpcloud.com/web/download.html#desktop
Jumpcut	Clipboard manager	https://snark.github.io/jumpcut/
Jumpshare	File sharing, screen recording, and screenshot capture app	https://jumpshare.com/
Jupyter Notebook Quick Look	Quick Look plugin for Jupyter notebooks	https://github.com/jendas1/jupyter-notebook-quick-look
Jupyter Notebook Viewer	Utility to render Jupyter notebooks	https://github.com/tuxu/nbviewer-app
JupyterLab	Desktop application for JupyterLab	https://github.com/jupyterlab/jupyterlab-desktop
JupyterLab App	Desktop application for JupyterLab	https://github.com/jupyterlab/jupyterlab-desktop
JuxtaCode	Diff, merge, and compare code	https://juxtacode.app/
Jyutping	Cantonese Jyutping Input Method	https://jyutping.app/
k6 Studio	Application for generating k6 test scripts	https://grafana.com/docs/k6-studio
K8Studio	Kubernetes GUI	https://k8studio.io/
K8studio	Kubernetes GUI	https://k8studio.io/
Kactus	True version control tool for designers	https://kactus.io/
Kafka Tool	GUI for managing and using Apache Kafka clusters	https://www.kafkatool.com/index.html
Kaku	Terminal optimised for AI coding	https://github.com/tw93/Kaku
Kaleidoscope	Spot and merge differences in text and image files or folders	https://kaleidoscope.app/
Kaleidoscope v2	Spot and merge differences in text and image files or folders	https://kaleidoscope.app/
Kaleidoscope v3	Spot and merge differences in text and image files or folders	https://kaleidoscope.app/
Kameleo	Antidetect browser to bypass anti-bot systems	https://kameleo.io/
Kando	Pie menu	https://kando.menu/
Kap	Open-source screen recorder built with web technology	https://getkap.co/
Karabiner Elements	Keyboard customiser	https://karabiner-elements.pqrs.org/
KaraFun	Karaoke player software	https://www.karafun.com/
Karing	Proxy utility	https://karing.app/
Katalon Studio	Test automation solution	https://katalon.com/download
Katana	Open-source screenshot utility	https://github.com/bluegill/katana/
kate	Multi-document editor by KDE	https://kate-editor.org/
Kate	Multi-document editor by KDE	https://kate-editor.org/
KaTrain	Tool for analyzing games and playing go with AI feedback from KataGo	https://github.com/sanderland/katrain
KCC	Comic and manga converter for ebook readers	https://github.com/ciromattia/kcc
KDE Connect	Communicate with your handheld devices	https://kdeconnect.kde.org/
kdenlive	Free and Open Source Video Editor	https://kdenlive.org/
Kdenlive	Free and Open Source Video Editor	https://kdenlive.org/
kdiff3	Utility for comparing and merging files and directories	https://invent.kde.org/sdk/kdiff3
KDiff3	Utility for comparing and merging files and directories	https://invent.kde.org/sdk/kdiff3
kDrive	Client for the kDrive collaborative cloud storage service	https://www.infomaniak.com/en/ksuite/kdrive
Keep It	Notebook, scrapbook and organiser tool	https://reinventedsoftware.com/keepit/
KeePassX	Personal data manager focusing on security	https://www.keepassx.org/
KeePassXC	Password manager app	https://keepassxc.org/
Keeper Password Manager	Password manager application and digital vault	https://keepersecurity.com/
KeeperDB	Database management tool for Postgres, MySQL, SQLite, MSSQL, Oracle, Redshift	https://www.keepersecurity.com/keeperdb/
KeepingYouAwake	Tool to prevent the system from going into sleep mode	https://keepingyouawake.app/
Keet	Peer-to-peer video and text chat	https://keet.io/
keet	Peer-to-peer video and text chat	https://keet.io/
KeeWeb	Password manager compatible with KeePass	https://keeweb.info/
Keka	File archiver	https://www.keka.io/
Keka External Helper	Helper application for the Keka file archiver	https://github.com/aonez/Keka/wiki/Default-application
KekaDefaultApp	Helper application for the Keka file archiver	https://github.com/aonez/Keka/wiki/Default-application
KekaExternalHelper	Helper application for the Keka file archiver	https://github.com/aonez/Keka/wiki/Default-application
Kern	Performance synthesiser	https://www.fullbucket.de/music/kern.html
Kernelpanic GhostTile	Hide your running applications from Dock	https://ghosttile.kernelpanic.im/
Kext Updater	Automatic updater for kernel extensions required by Hackintoshes	https://kextupdater.de/
KextViewr	Display all currently loaded kexts	https://objective-see.org/products/kextviewr.html
Key Codes	Display key code, unicode value and modifier keys state for any key combination	https://manytricks.com/keycodes/
Keybase	End-to-end encryption software	https://keybase.io/
Keyboard Cleaner	Desktop shield and keystroke interceptor	https://jan.prima.de/~jan/plok/archives/48-Keyboard-Cleaner.html
Keyboard Cowboy	Keyboard shortcut utility	https://github.com/zenangst/KeyboardCowboy
Keyboard Maestro	Automation software	https://www.keyboardmaestro.com/main/
KeyboardCleanTool	Blocks all Keyboard and TouchBar input	https://folivora.ai/keyboardcleantool
KeyboardHolder	Switch input method per application	https://keyboardholder.leavesc.com/
KeyCastr	Open-source keystroke visualiser	https://github.com/keycastr/keycastr
Keychron Assistant	Companion app for Keychron Launcher's Quick Start feature	https://www.keychron.com/blogs/news/how-to-download-and-install-keychron-assist
Keychron-Assistant	Companion app for Keychron Launcher's Quick Start feature	https://www.keychron.com/blogs/news/how-to-download-and-install-keychron-assist
KeyClu	Find shortcuts for any installed application	https://sergii.tatarenkov.name/apps/keyclu/
KeyCombiner	Instant shortcut lookup	https://keycombiner.com/
KeyCue	Finds, learns and remembers keyboard shortcuts	https://ergonis.com/keycue
Keyguard	Client for the Bitwarden platform	https://github.com/AChep/keyguard-app
Keyman	Reconfigures keyboard to type in another language	https://keyman.com/
KeyManager	Certificate manager	https://keymanager.org/
Keymapp	ZSA keyboard firmware flasher	https://www.zsa.io/flash
Keypad Layout	Utility to control window layout using the Ctrl key and the numeric keypad	https://github.com/janten/keypad-layout
Keysafe	Read and decrypt Apple Keychain files	https://miln.eu/keysafe
KeyScreen	Show key presses on screen	https://keyscreenapp.com/
Keysmith	Create custom keyboard shortcuts for anything	https://www.keysmith.app/
KeyStore Explorer	GUI replacement for the Java command-line utilities keytool and jarsigner	https://keystore-explorer.org/
Keyty	Keyboard and mouse input visualizer	https://keyty.app/
KiCad	Electronics design automation suite	https://kicad.org/
kid3	Audio tagger focusing on efficiency	https://kid3.kde.org/
Kid3	Audio tagger focusing on efficiency	https://kid3.kde.org/
KiGB	Nintendo Game Boy/Game Boy Color emulator	https://www.bannister.org/software/kigb.htm
KiGB v2.0.9/KiGB	Nintendo Game Boy/Game Boy Color emulator	https://www.bannister.org/software/kigb.htm
Kiibohd Configurator	Modular community keyboard firmware	https://kiibohd.com/
Kilohearts Installer	Administration tool for Kilohearts products	https://kilohearts.com/download/
kimi	AI chat assistant from Moonshot	https://www.moonshot.ai/
Kimi Installer.app/Contents/Helpers/Kimi	AI chat assistant from Moonshot	https://www.moonshot.ai/
Kimis	Desktop client for Misskey	https://github.com/Lakr233/Kimis
kindaVim	Use Vim in input fields and non input fields	https://kindavim.app/
Kindle Comic Converter	Comic and manga converter for ebook readers	https://github.com/ciromattia/kcc
Kindle Comic Creator	Turns comics, graphic novels and manga into Kindle books	https://www.amazon.com/b?node=23496309011
Kindle Create	Creating beautiful books has never been easier	https://www.amazon.com/Kindle-Create/b?node=18292298011
Kindle Previewer	Preview and audit Kindle eBooks	https://kdp.amazon.com/en_US/help/topic/G202131170
Kiro	Agent-centric IDE with spec-driven development	https://kiro.dev/
kiro	Agent-centric IDE with spec-driven development	https://kiro.dev/
Kiro CLI	AI-powered productivity tool for the command-line	https://kiro.dev/docs/cli/
Kiro Crew	Persistent AI development workspace with multi-agent support	https://kiro.dev/docs/crew/
KiroCrew	Persistent AI development workspace with multi-agent support	https://kiro.dev/docs/crew/
kitty	GPU-based terminal emulator	https://github.com/kovidgoyal/kitty
kitty-nightly	GPU-based terminal emulator	https://github.com/kovidgoyal/kitty
Kiwi for Gmail	Enhances Gmail like a full-featured desktop office productivity app	https://www.kiwiforgmail.com/
Kiwix	App providing offline access to Wikipedia and many other web sites	https://www.kiwix.org/
KKBOX	Music streaming service	https://play.kkbox.com/
KKTerm	Local-first administration workspace for terminals, SSH, and SFTP	https://github.com/ryantsai/KKTerm
klatexformula	Generate images from LaTeX equations	https://klatexformula.sourceforge.io/
KLatexFormula	Generate images from LaTeX equations	https://klatexformula.sourceforge.io/
KLayout	IC design layout viewer and editor	https://www.klayout.de/
klogg	Fast, advanced log explorer	https://github.com/variar/klogg
Klogg	Fast, advanced log explorer	https://github.com/variar/klogg
Klokki	Automatic time-tracking solution	https://klokki.com/
kMeet	Client for the kMeet videoconferencing solution	https://kmeet.infomaniak.com/
KNIME 5.12.0	Software to create and productionise data science	https://www.knime.com/
KNIME Analytics Platform	Software to create and productionise data science	https://www.knime.com/
Knock	Unlock with AppleWatch	http://www.knocktounlock.com/
KnockKnock	Tool to show what is persistently installed on the computer	https://objective-see.org/products/knockknock.html
Knuff	Debug application for Apple Push Notification Service (APNs)	https://github.com/KnuffApp/Knuff
Kobo	Desktop reader for Kobo eBooks	https://www.kobo.com/desktop
KodeLife	Real-time GPU shader editor	https://hexler.net/kodelife
Kodi	Free and open-source media player	https://kodi.tv/
Koe	Zero-GUI voice input tool	https://github.com/missuo/koe
kogiQA	UI automation tool using natural language descriptions	https://kogiQA.com/
koharu	ML-powered manga translator	https://koharu.rs/
Koharu	ML-powered manga translator	https://koharu.rs/
Komet	Commit message editor	https://zgcoder.net/#komet
Konica Minolta Bizhub C750i/C650i/C360i/C287i/C286i/C4050i/C4000i/C3320i Printer Driver	PostScript printer driver	https://www.konicaminolta.eu/eu-en/support/download-centre
Konica Minolta Bizhub C759/C658/C368/C287/C3851 Series Printer	Drivers for Konica Monolta Bizhub printers	https://www.konicaminolta.eu/eu-en/support/download-centre
Kontur Talk	Video conferencing service	https://kontur.ru/talk
Koodo Reader	Open-source e-book reader	https://www.koodoreader.com/en
KopiaUI	Backup/restore tool	https://kopia.io/
KOReader	Document viewer for e-ink devices	https://koreader.rocks/
Kotlin LSP	Official Kotlin Language Server	https://github.com/Kotlin/kotlin-lsp
Kotlin Native	LLVM backend for Kotlin	https://kotlinlang.org/docs/reference/native-overview.html
Kreya	GUI Client for interacting with gRPC, REST and WebSocket services	https://kreya.app/
Krisp	Noise cancelling application	https://krisp.ai/
krita	Free and open-source painting and sketching program	https://krita.org/
Krita	Free and open-source painting and sketching program	https://krita.org/
ksnip	Screenshot and annotation tool	https://github.com/ksnip/ksnip
kstars	Astronomy software	https://kstars.kde.org/
KStars	Astronomy software	https://kstars.kde.org/
kuaitie	Cross-platform cloud clipboard synchronisation tool	https://home.clipber.com/
KubeContext	Menu bar app for managing Kubernetes contexts	https://github.com/turkenh/KubeContext
Kubernetic	Kubernetes desktop client	https://kubernetic.com/
kubeterm	Kubernetes graphical management tool	https://www.kubeterm.com/
Kubeterm	Kubernetes graphical management tool	https://www.kubeterm.com/
Kui	CLI graphics framework	https://github.com/kubernetes-sigs/kui
Kui-darwin-arm64/Kui	CLI graphics framework	https://github.com/kubernetes-sigs/kui
kunkun	App launcher	https://kunkun.sh/
Kunkun	App launcher	https://kunkun.sh/
KVIrc	IRC Client	https://www.kvirc.net/
Label LIVE	Label design and printer software	https://label.live/
LabPlot	Data visualization and analysis software	https://labplot.kde.org/
Laby Launcher	Launcher for LabyMod (Minecraft client)	https://labymod.net/
LabyMod Launcher	Launcher for LabyMod (Minecraft client)	https://labymod.net/
Lacework vulnerability scanner	Lacework inline scanner	https://github.com/lacework/lacework-vulnerability-scanner
Lagrange	Desktop GUI client for browsing Geminispace	https://gmi.skyjake.fi/lagrange/
LANDrop	Drop any files to any devices on your LAN	https://landrop.app/
Langdock	Platform for AI Adoption	https://langdock.com/products/desktop
Langflow	Low-code AI-workflow building tool	https://www.langflow.org/desktop
Langflow Desktop	Low-code AI-workflow building tool	https://www.langflow.org/desktop
LangGraph Studio	Desktop app for prototyping and debugging LangGraph applications locally	https://studio.langchain.com/
LanguageTool for Desktop	Grammar, spelling and style suggestions in all the writing apps	https://languagetool.org/
Lantern	Open Internet For All	https://lantern.io/
Lapce	Open source code editor written in Rust	https://lapce.dev/
Laravel Herd	Laravel and PHP development environment manager	https://herd.laravel.com/
Laravel Kit	Desktop Laravel admin panel app	https://tmdh.github.io/laravel-kit
Lark	Project management software	https://www.feishu.cn/
LarkSuite	Project management software	https://www.larksuite.com/
LaserPecker Design Space	Laser engraving and cutting software	https://laserpecker.net/
Lasso	Move and resize windows with mouse	https://thelasso.app/
Last Window Quits	Automatically quit apps when their last window is closed	https://lawand.io/last-window-quits/
Last.fm	Music services manager	https://www.last.fm/
Last.fm Scrobbler	Music services manager	https://www.last.fm/
LastPass	Password manager	https://www.lastpass.com/
Latest	Utility that shows the latest app updates	https://max.codes/latest
LaTeXDraw	Drawing editor for creating LaTeX PSTricks code	https://latexdraw.sourceforge.net/
LaTexDraw	Drawing editor for creating LaTeX PSTricks code	https://latexdraw.sourceforge.net/
LaTeXiT	Graphical interface for LaTeX	https://www.chachatelier.fr/latexit/
LaunchBar	Productivity tool	https://www.obdev.at/products/launchbar/index.html
LaunchControl	Create, manage and debug system and user services	https://www.soma-zone.com/LaunchControl/
Launchie	Launchpad replacement	https://www.launchie.app/
LaunchOS	Launchpad alternative	https://launchosapp.com/
Launchpad Manager	Tool to manage the launchpad	https://launchpadmanager.com/
Lazarus	IDE for rapid application development	https://www.lazarus-ide.org/
LazPaint	Image editor written in Lazarus	https://bgrabitmap.github.io/lazpaint/
LazyCat	Client for LazyCat hardware	https://lazycat.cloud/
LBRY	Official client for LBRY, a decentralised file-sharing and payment network	https://github.com/lbryio/lbry-desktop
LBRY Desktop	Official client for LBRY, a decentralised file-sharing and payment network	https://github.com/lbryio/lbry-desktop
Leader Key	Application launcher	https://github.com/mikker/LeaderKey
League Displays	Create a screensaver or wallpaper playlist using League art	https://support-leagueoflegends.riotgames.com/hc/en-us/articles/207525756-Setting-Custom-League-Screensavers-and-Wallpapers-League-Displays-
League of Legends	Multiplayer online battle arena game	https://na.leagueoflegends.com/en-us/
LeagueDisplays	Create a screensaver or wallpaper playlist using League art	https://support-leagueoflegends.riotgames.com/hc/en-us/articles/207525756-Setting-Custom-League-Screensavers-and-Wallpapers-League-Displays-
Leanote	Open source cloud notepad	https://github.com/leanote/desktop-app
Leapp	Cloud credentials manager	https://www.leapp.cloud/
Lectrote	Interactive Fiction interpreter in an Electron shell	https://github.com/erkyrath/lectrote
Ledger Wallet	Wallet desktop application to maintain multiple cryptocurrencies	https://shop.ledger.com/pages/ledger-wallet
Leech	Lightweight download manager	https://manytricks.com/leech/
Leela	Go playing program with easy to use graphical interface	https://sjeng.org/leela.html
Leela OpenCL	Go playing program with easy to use graphical interface	https://sjeng.org/leela.html
legcord	Custom Discord client	https://legcord.app/
Legcord	Custom Discord client	https://legcord.app/
Lego Mindstorms EV3 Home Edition	Programmable robotics construction set	https://www.lego.com/en-us/mindstorms
Lego SPIKE	Develop with Scratch and Python for your LEGO Spike set	https://education.lego.com/
LehrerOffice	Education software	https://www.cmi-bildung.ch/
LeiGod	Game network accelerator	https://www.leigod.com/
lemon	Tiny judging environment for OI contest based on Lemon + LemonPlus	https://github.com/Project-LemonLime/Project_LemonLime
Lemonade Server	Local LLM server with GPU and NPU acceleration	https://lemonade-server.ai/
lemonlime	Tiny judging environment for OI contest based on Lemon + LemonPlus	https://github.com/Project-LemonLime/Project_LemonLime
Lens	Kubernetes IDE	https://lenshq.io/
LeoCAD	CAD program for creating virtual LEGO models	https://github.com/leozide/leocad
Lepton	Snippet management app	https://hackjutsu.com/Lepton/
Letos	Create, edit, browse SQLite databases	https://letos.org/
LETS Desktop App	Font manager for Fontworks' LETS	https://lets.fontworks.co.jp/
LETSデスクトップアプリ	Font manager for Fontworks' LETS	https://lets.fontworks.co.jp/
Letter Opener	Display winmail.dat files directly in Mail.app	https://winmail.help/
Lexicon	Library management for professional DJs	https://www.lexicondj.com/
LG OnScreen Control	Displays all connected LG monitor information	https://www.lg.com/us/support/monitors
Libation	Audible audiobook manager and liberator	https://getlibation.com/
libNDI	NDI SDK	https://ndi.video/
LibreCAD	CAD application	https://librecad.org/
LibreOffice	Free cross-platform office suite, fresh version	https://www.libreoffice.org/
LibreOffice Language Pack	Collection of alternate languages for LibreOffice	https://www.libreoffice.org/
LibreOffice Still	Free cross-platform office suite, stable version recommended for enterprises	https://www.libreoffice.org/
librepcb	EDA software to develop printed circuit boards	https://librepcb.org/
LibrePCB	EDA software to develop printed circuit boards	https://librepcb.org/
LibreWolf	Web browser	https://librewolf.net/
LICEcap	Animated screen capture application	https://www.cockos.com/licecap/
Licensed	Software license manager	https://amarsagoo.info/licensed/
LiClipse	Lightweight editors, theming and usability improvements for Eclipse	https://www.liclipse.com/
LiClipse_Aarch64/LiClipse	Lightweight editors, theming and usability improvements for Eclipse	https://www.liclipse.com/
LidAngleSensor	Utility to display the lid angle and play a creaking sound	https://github.com/samhenrigold/LidAngleSensor
Lidarr	Looks and smells like Sonarr but made for music	https://lidarr.audio/
Lifesize	Cloud contact and video conferencing	https://www.lifesize.com/
lifesize	Cloud contact and video conferencing	https://www.lifesize.com/
LightBurn	Layout, editing, and control software for laser cutters	https://lightburnsoftware.com/
Lighting	Tool to control LIFX lights via a Notification Center widget	https://github.com/tatey/Lighting
Lightkey	DMX lighting control	https://lightkeyapp.com/
LightProxy	Proxy & Debug tools based on whistle with Chrome Devtools UI	https://alibaba.github.io/lightproxy/
Lightworks	Complete video creation package	https://www.lwks.com/
Limitless	Personal AI-powered transcription and notetaking service	https://www.limitless.ai/
Linden Lab Second Life Viewer	3D browsing software for Second Life online virtual world	https://secondlife.com/
Linear	App to manage software development and track bugs	https://linear.app/
LinearMouse	Customise mouse behavior	https://linearmouse.org/
Lingon X	Automator software to start apps, run scripts or commands and more	https://www.peterborgapps.com/lingon/
LinguaX	Menu-bar utility for third-party mice with smooth scrolling and mapping	https://linguax.app/
LinkAndroid	Open source android assistant	https://linkandroid.com/
LinkLiar	Link-Layer MAC spoofing GUI for macOS	https://github.com/halo/LinkLiar
Linphone	Software for communication systems developers	https://www.linphone.org/
LINQPad	.NET LINQ database query tool and code scratchpad	https://www.linqpad.net/
LINQPad 9	.NET LINQ database query tool and code scratchpad	https://www.linqpad.net/
Liquibase Community	Library for database change tracking	https://www.liquibase.com/community
Liquibase Secure	Database change management tool	https://www.liquibase.com/liquibase-secure
Listen 1	Search and play songs from a variety of online sources	https://listen1.github.io/listen1/
Listen1	Search and play songs from a variety of online sources	https://listen1.github.io/listen1/
Litecoin	Cryptocurrency wallet	https://litecoin.org/
Litecoin-Qt	Cryptocurrency wallet	https://litecoin.org/
LiteIDE	Go IDE	https://github.com/visualfc/liteide
liteide/LiteIDE	Go IDE	https://github.com/visualfc/liteide
Little Navconnect	Flight planning and navigation and airport search and information system	https://albar965.github.io/littlenavmap.html
Little Navmap	Flight planning and navigation and airport search and information system	https://albar965.github.io/littlenavmap.html
Little Snitch	Host-based application firewall	https://www.obdev.at/products/littlesnitch/index.html
Live Home 3D	Home & floorplan designer & renderer	https://www.livehome3d.com/mac/live-home-3d
Livebook	Code notebooks for Elixir developers	https://livebook.dev/
Livebook Nightly	Code notebooks for Elixir developers	https://livebook.dev/
Liviable	Create and run Linux virtual machines on Apple silicon Macs	https://eclecticlight.co/virtualisation-on-apple-silicon/
liviable1b5/Liviable	Create and run Linux virtual machines on Apple silicon Macs	https://eclecticlight.co/virtualisation-on-apple-silicon/
Llama	Menu bar app for running local LLMs	https://github.com/ggml-org/Llama-macOS
LlamaChat	Client for LLaMA models	https://llamachat.app/
LM Studio	Discover, download, and run local LLMs	https://lmstudio.ai/
LM Studio Bionic	AI agent for working with open models	https://lmstudio.ai/
LMMS	Music production software	https://lmms.io/
lo-rain	App that makes it rain no matter where you are, even over your apps	https://lo.cafe/lo-rain
Loading	Network activity monitor	https://bonzaiapps.com/loading/
Loaf	Animated icon library	https://getloaf.io/
LobeHub	AI chat framework	https://github.com/lobehub/lobe-chat
Local	WordPress local development tool by Flywheel	https://localwp.com/
Local Beta	WordPress local development tool by Flywheel (beta)	https://localwp.com/
LocalCan	Develop apps with Public URLs and .local domains	https://www.localcan.com/
LocalizationEditor	iOS app localization manager	https://github.com/igorkulman/iOSLocalizationEditor/
LocalSend	Open-source cross-platform alternative to AirDrop	https://localsend.org/
LocalXpose	Reverse proxy that enables you to expose your localhost to the internet	https://localxpose.io/
LocationSimulator	Application to spoof your iOS, iPadOS or iPhoneSimulator device location	https://github.com/Schlaubischlump/LocationSimulator
Lock Rattler	Checks security systems and reports issues	https://eclecticlight.co/lockrattler-systhist/
Lockdown	Audits and remediates security configuration settings	https://objective-see.org/products/lockdown.html
lockrattler437/LockRattler	Checks security systems and reports issues	https://eclecticlight.co/lockrattler-systhist/
Locu	Daily planner and focus timer	https://locu.app/
lofi	Spotify player with WebGL visualisations	https://www.lofi.rocks/
Lofi	Spotify player with WebGL visualisations	https://www.lofi.rocks/
LogDNA CLI	Command-line interface for LogDNA	https://www.mezmo.com/
LoginputMac	Chinese input method	https://im.logcg.com/loginputmac3
LogInputMac3	Chinese input method	https://im.logcg.com/loginputmac3
Logisim Evolution	Digital logic designer and simulator	https://github.com/logisim-evolution/logisim-evolution
Logisim-evolution	Digital logic designer and simulator	https://github.com/logisim-evolution/logisim-evolution
Logitech Camera Settings	Provides access to camera controls	https://support.logi.com/hc/en-us/articles/360049055854
Logitech G HUB	Support for Logitech G gear	https://www.logitechg.com/en-us/innovation/g-hub.html
Logitech Options	Software for Logitech devices	https://support.logitech.com/software/options
Logitech Options+	Software for Logitech devices	https://www.logitech.com/en-us/software/logi-options-plus.html
Logitech Presentation	Presentation software	https://support.logitech.com/en_au/product/spotlight-presentation-remote
LogiTune	Optimise your webcam, headset, and Logi Dock for video meetings	https://www.logitech.com/en-us/video-collaboration/software/logi-tune-software.html
LogMeIn Client	Remote access tool	https://www.logmein.com/pro
LogMeIn Hamachi	Hosted VPN service that lets you securely extend LAN-like networks	https://vpn.net/
Logos	Bible study software	https://www.logos.com/
Logseq	Privacy-first, open-source platform for knowledge sharing and management	https://github.com/logseq/logseq
Logseq OG	Privacy-first, open-source platform for knowledge sharing and management	https://github.com/logseq/og
Logseq-OG	Privacy-first, open-source platform for knowledge sharing and management	https://github.com/logseq/og
Lolgato	Enhances control over Elgato lights	https://github.com/raine/Lolgato/
Longbridge Pro	Stock trading platform	https://longbridge.com/
Longplay	Album-focused music player	https://longplay.rocks/
LookAway	Break time reminder app	https://lookaway.com/
Lookin	App for iOS view debugging	https://lookin.work/
Looking Glass Studio	View and edit 3D image and video formats on the Looking Glass	https://look.glass/
Loom	Screen and video recording software	https://www.loom.com/
Loop	Window manager	https://github.com/MrKai77/Loop
LOOP	Team messenger for business communication	https://loop.ru/
Loopback	Cable-free audio router	https://rogueamoeba.com/loopback/
LosslessCut	Trims video and audio files losslessly	https://github.com/mifi/lossless-cut
LosslessSwitcher	Lossless sample rate switcher for Apple Music	https://github.com/vincentneo/LosslessSwitcher
Lotus	Keep up with GitHub notifications	https://getlotus.app/
Loungy	Application launcher	https://github.com/MatthiasGrandl/Loungy
Loupdeck	Software for Loupedeck consoles	https://loupedeck.com/
love	2D game framework for Lua	https://love2d.org/
Low Profile	Utility to help inspect Apple Configuration Profile payloads	https://github.com/ninxsoft/LowProfile
LRTimelapse	Time lapse editing, keyframing, grading and rendering	https://lrtimelapse.com/
LTspice	SPICE simulation software, schematic capture and waveform viewer	https://www.analog.com/en/resources/design-tools-and-calculators/ltspice-simulator.html
LTX Desktop	Desktop app for generating videos with LTX models	https://ltx.io/ltx-desktop
luanti	Voxel game-creation platform	https://www.luanti.org/
Luanti	Voxel game-creation platform	https://www.luanti.org/
Ludwig	Sentence search engine app that helps you write better English	https://ludwig.guru/
ludwig	Sentence search engine app that helps you write better English	https://ludwig.guru/
LuLu	Open-source firewall to block unknown outgoing connections	https://objective-see.org/products/lulu.html
Lumen	Magic auto brightness based on screen contents	https://github.com/anishathalye/lumen
Lumide	Agent-native code editor	https://lumide.dev/
Luminance HDR	Provides a workflow for HDR imaging	https://qtpfsgui.sourceforge.io/
Luminance HDR 2.6.0	Provides a workflow for HDR imaging	https://qtpfsgui.sourceforge.io/
Luna Display	Use your iPad as a wireless second display	https://astropad.com/product/lunadisplay/
Luna Secondary	Turn a computer or tablet into a second display	https://astropad.com/product/lunadisplay/
Lunacy	Graphic design software	https://icons8.com/lunacy
Lunar	Adaptive brightness for external displays	https://lunar.fyi/
Lunar Client	Modpack for Minecraft 1.7.10 and 1.8.9	https://www.lunarclient.com/
LunarBar	Lunar calendar for menu bar	https://github.com/LunarBar-app/LunarBar
LunaSea	Self-hosted controller built using the Flutter framework	https://www.lunasea.app/
Lunatask	Encrypted to-do list, habit tracker, journaling, life-tracking and notes app	https://lunatask.app/
Luniistore	Utility for My Fabulous Storyteller	https://lunii.com/
LuxMark	OpenCL benchmark	https://github.com/LuxCoreRender/LuxMark/
Luxury Yacht	Desktop app for managing Kubernetes clusters	https://luxury-yacht.app/
LX Music Assistant Desktop Edition	Music app base on Electron & Vue	https://github.com/lyswhut/lx-music-desktop/
lx-music-desktop	Music app base on Electron & Vue	https://github.com/lyswhut/lx-music-desktop/
Lychee Slicer	Slicer for Resin 3D printers	https://mango3d.io/
LycheeSlicer	Slicer for Resin 3D printers	https://mango3d.io/
Lyn	Media browser and viewer	https://www.lynapp.com/
Lynkeos	Astronomical webcam image processing software	https://lynkeos.sourceforge.io/
Lynkeos-App-3-10/Lynkeos	Astronomical webcam image processing software	https://lynkeos.sourceforge.io/
LYNX Whiteboard by Clevertouch	Cross platform presentation and productivity app	https://www.lynxcloud.app/
Lyric Fever	Lyrics for Apple Music and Spotify	https://lyricfever.com/
Lyrics Finder	Find and download song lyrics	https://www.mediahuman.com/lyrics-finder/
Lyrics Master	Find and download lyrics	https://lyricsmaster.app/desktop/
LyricsFinder	Find and download song lyrics	https://www.mediahuman.com/lyrics-finder/
LyricsX	Lyrics for iTunes, Spotify, Vox and Audirvana Plus	https://github.com/ddddxxx/LyricsX
LyX	GUI document processor based on the LaTeX typesetting system	https://www.lyx.org/
LÖVE	2D game framework for Lua	https://love2d.org/
M32 Edit	Remote control for Midas M32 audio consoles	https://www.midasconsoles.com/en/products/0603-AEO
M32-Edit	Remote control for Midas M32 audio consoles	https://www.midasconsoles.com/en/products/0603-AEO
M3Unify	File exporter and M3U playlist creator	https://dougscripts.com/apps/m3unifyapp.php
MAA	One-click tool for the daily tasks of Arknights	https://github.com/MaaAssistantArknights/MaaAssistantArknights
Mac Advanced Compliance Editor	Simplify compliance baseline creation, auditing, and management	https://github.com/MACE-App/MACE
Mac DVDRipper Pro	Utility to rip and copy DVD content	https://www.macdvdripperpro.com/
Mac Media Key Forwarder	Media key forwarder for Apple Music and Spotify	https://github.com/quentinlesceller/macmediakeyforwarder/
Mac Monitor	Analysis tool for security research and malware triage	https://github.com/Brandon7CC/mac-monitor
Mac Mouse Fix	Mouse utility to add gesture functions and smooth scrolling to 3rd party mice	https://macmousefix.com/
Mac Performance Monitor	Menu bar performance monitor with recorded history and analytics	https://macperformancemonitor.com/
Mac Sai	System cleaner, optimiser, and malware scanner	https://github.com/iliyami/MacSai
macai	Native chat application for all major LLM APIs	https://github.com/Renset/macai
Macast	DLNA Media Renderer	https://github.com/xfangfang/Macast
MacBreakZ	Ergonomic Assistant to prevent health problems	https://www.publicspace.net/MacBreakZ/
MacBreakZ 5	Ergonomic Assistant to prevent health problems	https://www.publicspace.net/MacBreakZ/
Maccy	Clipboard manager	https://maccy.app/
MacDive	Digital dive log	https://www.mac-dive.com/
MacDown	Open-source Markdown editor	https://macdown.uranusjr.com/
MacDown 3000	Markdown editor with live preview and syntax highlighting	https://macdown.app/
MacDroid	Connect to your Android devices	https://www.macdroid.app/
MACE	Simplify compliance baseline creation, auditing, and management	https://github.com/MACE-App/MACE
MacForge	Plugin, App, and Theme store which includes plugin injection	https://www.macenhance.com/macforge
macFUSE	File system integration	https://macfuse.github.io/
MacGameStore	Buy, download, and play your games	https://www.macgamestore.com/app/
MacGDBp	Live, interactive debugging of your running PHP applications	https://www.bluestatic.org/software/macgdbp/
MacGesture	Utility to set up global mouse gestures	https://github.com/MacGesture/MacGesture
Macgo Mac Blu-ray Player	Player for Blu-ray content	https://www.macblurayplayer.com/
Macgo Mac Blu-ray Player Pro	Blu-ray player software	https://www.macblurayplayer.com/
MacHg	GUI for the Mercurial distributed revision control system	https://jasonfharris.com/machg/
MachOView	Visual Mach-O file browser	https://sourceforge.net/projects/machoview/
MaciASL	ACPI Machine Language (AML) compiler and IDE	https://github.com/acidanthera/MaciASL
macintosh.js	Virtual Apple Macintosh with System 8, running in Electron	https://github.com/felixrieseberg/macintosh.js
MacJournal	Journaling and blogging software	https://danschimpf.com/
MacLoggerDX	Ham radio logging and rig control software	https://www.dogparksoftware.com/MacLoggerDX.html
MacMD Viewer	Markdown viewer with QuickLook and Mermaid support	https://macmdviewer.com/
MacMediaKeyForwarder	Media key forwarder for Apple Music and Spotify	https://github.com/quentinlesceller/macmediakeyforwarder/
MacMolPlt/wxMacMolPlt	Cross-platform GUI input generator for GAMESS	https://brettbode.github.io/wxmacmolplt
macOS InstantView	Driver for SM76x with UI	https://www.siliconmotion.com/
MacPacker	Archive manager	https://macpacker.app/
MacPAR deLuxe	Utility to combine binary content files after download	https://gp.home.xs4all.nl/Site/MacPAR_deLuxe.html
MacParakeet	Local speech-to-text, transcription, and meeting recording	https://macparakeet.com/
MacPass	Open-source, KeePass-client and password manager	https://macpass.github.io/
MacPilot	Graphical user interface for the command terminal	https://www.koingosw.com/products/macpilot/
MacPulse	System monitoring dashboard with historical analytics	https://macpulse.app/
Macro Recorder	Record mouse and keyboard actions	https://www.macrorecorder.com/
MacroRecorder	Record mouse and keyboard actions	https://www.macrorecorder.com/
Macs Fan Control	Controls and monitors all fans on Apple computers	https://crystalidea.com/macs-fan-control
macshot	Screenshot and screen recording tool	https://github.com/sw33tLie/macshot
macshot Offline	Screenshot and screen recording tool without upload integrations	https://github.com/sw33tLie/macshot
macSKK	SKK Input Method	https://github.com/mtgto/macSKK
MacStroke	Configurable global mouse gestures	https://github.com/mtjo/MacStroke/
macSVG	App for designing HTML5 Scalable Vector Graphics	https://macsvg.org/
macSVG_v1_2/macSVG	App for designing HTML5 Scalable Vector Graphics	https://macsvg.org/
MacSymbolicator	Symbolicate Apple related crash reports	https://github.com/inket/MacSymbolicator/
MacsyZones	Window management utility	https://macsyzones.com/
MacTeX	Full TeX Live distribution with GUI applications	https://www.tug.org/mactex/
MacTools	Menu bar toolbox	https://github.com/ggbond268/MacTools
Mactracker	Detailed information on every Apple product ever made	https://mactracker.ca/
MacUpdater	Track and update to the latest versions of installed software	https://www.corecode.io/macupdater/index.html
macUSB	Tool to create bootable USB installers	https://www.macusb.app/
MacVim	Text editor	https://github.com/macvim-dev/macvim
MacWhisper	Speech recognition tool	https://goodsnooze.gumroad.com/l/macwhisper
MacWinZipper	Zip archiver	https://tida.co.jp/macwinzipper
MacX DVD Ripper Pro	DVD ripping application	https://www.macxdvd.com/mac-dvd-ripper-pro/
MacX Video Converter Pro	Tool to convert, edit, download & resize videos	https://www.macxdvd.com/mac-video-converter-pro/
MacX YouTube Downloader	Tool to download videos from YouTube	https://www.macxdvd.com/free-youtube-video-downloader-mac/
MacZip	Utility to open, create and modify archive files	https://ezip.awehunt.com/
Maelstrom	Multidirectional shooter game	https://www.libsdl.org/projects/Maelstrom/index.html
Maestral	Open-source Dropbox client	https://maestral.app/
Maestri	Canvas for agent orchestration	https://www.themaestri.app/
Maestro	AI agent command center	https://runmaestro.ai/
MagicaVoxel	8-bit 3D voxel editor and interactive path tracing renderer	https://ephtracy.github.io/
MagicPlot	Software for nonlinear fitting, plotting and data analysis	https://magicplot.com/
MagicQuit	Efficiency tool for automatically closing apps when they are not in use	https://magicquit.com/
Mail Assistant	Companion tool for Drafts to allow sending HTML formatted email	https://docs.getdrafts.com/misc/mail-assistant
Mailbird	Email client	https://www.getmailbird.com/
Mailbutler	Personal assistant and productivity tool for Apple Mail	https://www.mailbutler.io/
MailMaster	Email client	https://dashi.163.com/
MailMate	IMAP email client	https://freron.com/
Mailplane	Gmail client	https://mailplaneapp.com/
Mailspring	Fork of Nylas Mail	https://getmailspring.com/
MailSteward	Email management tool for Apple Mail and Postbox	https://mailsteward.com/
MailTrackerBlocker	Email tracker, read receipt and spy pixel blocker plugin for Apple Mail	https://apparition47.github.io/MailTrackerBlocker/
Maintenance	Operating system maintenance and cleaning utility	https://www.titanium-software.fr/en/maintenance.html
MakeMKV	Video format converter (transcoder)	https://www.makemkv.com/
MakeraCAM	CAM software for Makera CNCs	https://www.makera.com/pages/software
Maltego	Open source intelligence and graphical link analysis tool	https://www.maltego.com/pricing-plans/
Malus	Proxy to help accessing various online media resources/services	https://getmalus.com/
Malwarebytes for Mac	Scan and remove malware, spyware, and viruses	https://www.malwarebytes.com/mac/
MAMP	Web development solution with Apache, Nginx, PHP & MySQL	https://www.mamp.info/
MangoDisk	Disk cleaner and storage analyser	https://mangodisk.app/
Manico	App launcher and switcher	https://manico.im/
ManicTime	Time tracker that automatically collects computer usage data	https://www.manictime.com/
Manila	Finder extension for changing folder colours	https://github.com/neilsardesai/Manila
Manus	AI agent for automating local computer workflows	https://manus.im/desktop
manuskript	Tool for writers	https://www.theologeek.ch/manuskript/
Manuskript	Tool for writers	https://www.theologeek.ch/manuskript/
Manyverse	Social network built on the peer-to-peer SSB protocol	https://www.manyver.se/
Marathon	First-person shooter, first in a trilogy	https://alephone.lhowon.org/
Marathon 2	First-person shooter, second in a trilogy	https://alephone.lhowon.org/
Marathon Infinity	First-person shooter, third in a trilogy	https://alephone.lhowon.org/
MarginNote	E-reader	https://www.marginnote.com/
MarginNote 4	E-reader	https://www.marginnote.com/
Markdown Preview	Markdown previewer with bundled Quick Look extension	https://markdownpreview.app/
Markdown Service Tools	Collection of services for Markdown-formatted text	https://brettterpstra.com/projects/markdown-service-tools/
Marked	Previewer for Markdown, MultiMarkdown and other text markup languages	https://markedapp.com/
MarkEdit	Markdown editor	https://github.com/MarkEdit-app/MarkEdit
MarkRight	Markdown editor with live preview	https://github.com/dvcrn/markright
MarkText	Markdown editor	https://github.com/marktext/marktext
MarkViewer	Minimal markdown editor	https://markviewer.com/
MARS	Mips Assembly and Runtime Simulator	https://computerscience.missouristate.edu/mars-mips-simulator.htm
MarsEdit	Tool to write, preview and publish blogs	https://redsweater.com/marsedit/
Marta	Extensible two-pane file manager	https://marta.sh/
Marta File Manager	Extensible two-pane file manager	https://marta.sh/
Maru-Jan	Play japanese mahjong online	https://www.maru-jan.com/
Marvel	Prototyping, testing and handoff tools	https://marvelapp.com/
Marvin	Personal productivity app	https://www.amazingmarvin.com/
massCode	Code snippets manager for developers	https://masscode.io/
MassReplaceIt	Find and replace utility	https://www.hexmonkeysoftware.com/
Master PDF Editor	PDF editor	https://code-industry.net/masterpdfeditor/
Mate Translate	Select text in any app and translate it	https://gikken.co/mate-translate/mac/
Mater	Menubar pomodoro app	https://github.com/jasonlong/mater
Material Design	Colour picker	https://github.com/CodeCatalyst/MaterialDesignColorPicker
Material Maker	Procedural material authoring and 3D painting tool based on the Godot Engine	https://rodzilla.itch.io/material-maker
Mathcha Notebook	Mathematics editor	https://www.mathcha.io/
Mathpix Snipping Tool	Scanner app for math and science	https://mathpix.com/
Matterhorn	Unix terminal client for Mattermost	https://github.com/matterhorn-chat/matterhorn
Mattermost	Open-source, self-hosted Slack-alternative	https://mattermost.com/
Max	Flexible space to create your own interactive software	https://cycling74.com/products/max
Maxon App	Install, use, and try Maxon products	https://www.maxon.net/en/downloads/
Mbed Studio	IDE for Mbed OS application and library development	https://os.mbed.com/studio/
McBopomofo	Input method for Bopomofo (Phonetic Symbols of Mandarin Chinese)	https://mcbopomofo.openvanilla.org/
mcloud	China Mobile Cloud Drive	https://yun.139.com/
MCP Bundler	MCP servers and Agent skills management app	https://mcp-bundler.com/
MCPBundler	MCP servers and Agent skills management app	https://mcp-bundler.com/
MCreator	Software used to make Minecraft Java Edition mods	https://mcreator.net/
MDB ACCDB Viewer	Open Microsoft Access Databases	https://eggerapps.at/mdbviewer/
MDB/ACCDB Viewer	Open Microsoft Access Databases	https://eggerapps.at/mdbviewer/
MDRP	Utility to rip and copy DVD content	https://www.macdvdripperpro.com/
MDS	Deploy Intel and Apple Silicon Macs in Seconds	https://twocanoes.com/products/mac/mds/
Mechvibes	Play mechanical keyboard sounds as you type	https://mechvibes.com/
Media Center 36	Media manager and player	https://www.jriver.com/index.html
Media Converter	Convert avi, wmv, mkv, rm, mov and more to other formats	https://media-converter.sourceforge.io/
Media Converter.localized/Media Converter	Convert avi, wmv, mkv, rm, mov and more to other formats	https://media-converter.sourceforge.io/
MediaElch	Media Manager for Kodi	https://www.kvibes.de/en/mediaelch/
MediaHuman Audio Converter	Audio converter	https://www.mediahuman.com/audio-converter/
MediaHuman YouTube Downloader	YouTube videos downloader	https://www.mediahuman.net/youtube-video-downloader/
MediaHuman YouTube to MP3 Converter	Downloads music from playlists or channels	https://www.mediahuman.net/youtube-to-mp3/
MediaInfo	Display technical and tag data for video and audio files	https://mediaarea.net/en/MediaInfo
MediaInfoEx	Display file information in Finder contextual menu	https://github.com/sbarex/MediaInfo
MediaMate	UI replacement for volume, brightness and now playing controls	https://wouter01.github.io/MediaMate/
MediathekView	Manages online multimedia libs of German, Austrian and Swiss public broadcasters	https://mediathekview.de/
MediBang Paint Pro	Create digital art and comics	https://medibangpaint.com/en/pc/
MediBangPaintPro	Create digital art and comics	https://medibangpaint.com/en/pc/
Medis	Modern GUI for Redis	https://getmedis.com/
meetily	Meeting transcription and analysis application	https://meetily.ai/
Meetily	Meeting transcription and analysis application	https://meetily.ai/
MeetingBar	Shows the next meeting in the menu bar	https://github.com/leits/MeetingBar
MeetingRecorder	Recorder for meetings capturing mic and system audio	https://meetingsrecorder.com/
MeetMic	Audio transcription tool	https://meetmic.app/
MEGA	Molecular evolution statistical analysis and construction of phylogenetic trees	https://megasoftware.net/
MEGAcmd	Command-line access to MEGA services	https://mega.nz/cmd
MEGAsync	Syncs files between computers and MEGA Cloud drives	https://mega.nz/sync
MegaZeux	ASCII-based game creation system	https://www.digitalmzx.com/
meituxiuxiu	Photo editing and beautification software	https://pc.meitu.com/
Meld	Visual diff and merge tool	https://gitlab.com/dehesselle/meld_macos
Meld for macOS	Visual diff and merge tool	https://gitlab.com/dehesselle/meld_macos
Meld Studio	Live streaming and recording software	https://www.meldstudio.co/
Mellel	Advanced word processor built for long and complex documents	https://www.mellel.com/
Mellel 6	Advanced word processor built for long and complex documents	https://www.mellel.com/
Melodics	Helps you learn to play your instrument	https://melodics.com/
melonDS	Nintendo DS and DSi emulator	https://melonds.kuribo64.net/
Mem	Capture and access information from anywhere	https://get.mem.ai/
Memory	Time tracking software	https://memory.ai/timely/
Memory Cleaner	Free up RAM manually and automatically	https://nektony.com/memory-cleaner
Memory Cleaner 5	Free up RAM manually and automatically	https://nektony.com/memory-cleaner
Memory Meter 3	Memory cleaning utility	https://fiplab.com/apps/memory-clean-3-for-mac
Memory Tracker by Timely	Time tracking software	https://memory.ai/timely/
Memory-Map	GPS navigation software	https://memory-map.com/
MemoryAnalyzer	Java heap analyzer	https://eclipse.dev/mat/
mend	Application security scanning CLI	https://www.mend.io/
Mendeley Reference Manager	Research management tool	https://www.mendeley.com/download-reference-manager/macOS/
Menial Base	App to create, design, edit and browse SQLite 3 database files	https://menial.co.uk/base/
Menu Bar Splitter	Utility that adds dividers to your menu bar	https://github.com/jwhamilton99/menu-bar-splitter
MenuBar Stats	System monitor with temperature & fans plugins	https://seense.com/menubarstats/
MenubarX	Menu bar browser	https://menubarx.app/
MenuMeters	Set of CPU, memory, disk, and network monitoring tools	https://member.ipmu.jp/yuji.tachikawa/MenuMetersElCapitan/
MenuMeters for El Capitan (and later)	Set of CPU, memory, disk, and network monitoring tools	https://member.ipmu.jp/yuji.tachikawa/MenuMetersElCapitan/
MenuTube	Tool to capture YouTube into the menu bar	https://edanchenkov.github.io/MenuTube/
Menuwhere	Access the menu from anywhere	https://manytricks.com/menuwhere/
Meridiem	Markdown editor	https://meridiem.markwhen.com/
Merlin Project	Project management application	https://www.projectwizards.net/en/products/merlin-project/what-is
Meru	Gmail desktop app	https://meru.so/
Mesh	Private rolodex to remember people better	https://me.sh/
MeshLab	Mesh processing system	https://www.meshlab.net/
MeshLab2025.07	Mesh processing system	https://www.meshlab.net/
Messenger	Native desktop app for Messenger (formerly Facebook Messenger)	https://www.messenger.com/desktop
Messenger Native	Facebook's Messenger Native	https://github.com/gastonmorixe/MessengerNative
Meta	Tag editor for digital music	https://www.nightbirdsevolve.com/meta/
Meta Quest Developer Hub	VR development tool	https://developer.oculus.com/meta-quest-developer-hub/
Meta Quest Remote Desktop	Remote desktop companion app for Meta Quest headsets	https://www.meta.com/quest/
Meta Spark Studio	Create and share augmented reality experiences using the Facebook family of apps	https://sparkar.facebook.com/ar-studio/
meta-quest-developer-hub	VR development tool	https://developer.oculus.com/meta-quest-developer-hub/
Metabase	Business intelligence and analytics	https://www.metabase.com/
MetaImage	Image metadata and geographical tag viewer & editor	https://neededapps.com/metaimage/
Metamer	Accessible metadata editor for 16 Spotlight extended attributes	https://eclecticlight.co/xattred-sandstrip-xattr-tools/
metamer16/Metamer	Accessible metadata editor for 16 Spotlight extended attributes	https://eclecticlight.co/xattred-sandstrip-xattr-tools/
MetaRename	Bulk file renamer with meta tag support	https://neededapps.com/metarename/
Metashape	Process digital images and generate 3D spatial data	https://www.agisoft.com/
MetashapePro	Process digital images and generate 3D spatial data	https://www.agisoft.com/
Metasploit Framework	Penetration testing framework	https://www.metasploit.com/
MetaVideo	Video metadata tag viewer and editor	https://neededapps.com/metavideo/
MetaZ	Mp4 meta-data editor	https://metaz.maven-group.org/
Meteorologist	Adjustable weather viewing application	https://heat-meteo.sourceforge.io/
MFiles	Transfer files over local network	https://mfiles.maokebing.com/
mGBA	Game Boy Advance emulator	https://mgba.io/
mi	Text editor	https://www.mimikaki.net/
Mia for Gmail	Desktop email client for Gmail	https://www.miaforgmail.com/
MiaoYan	Markdown editor	https://miaoyan.app/
Mic Drop	Quickly mute your microphone with a global shortcut or menu bar control	https://getmicdrop.com/
Micro Sniff	Monitor microphone activity	https://github.com/dwarvesf/micro-sniff
Micro Snitch	Monitors and reports any microphone and camera activity	https://www.obdev.at/products/microsnitch/index.html
Micro.blog	Microblogging and social networking service	https://help.micro.blog/t/micro-blog-for-mac/45
Microsoft 365 Copilot	AI-first productivity assistant for Microsoft 365	https://www.microsoft.com/en-us/microsoft-365-copilot/download-copilot-app
Microsoft Auto Update	Provides updates to various Microsoft products	https://docs.microsoft.com/officeupdates/release-history-microsoft-autoupdate
Microsoft Azure Storage Explorer	Explorer for Azure Storage	https://azure.microsoft.com/en-us/features/storage-explorer/
Microsoft Bing Wallpaper	Use the Bing daily image as your wallpaper	https://www.bing.com/apps/wallpaper
Microsoft Bot Framework Emulator	Test and debug chat bots built with the Bot Framework SDK	https://github.com/Microsoft/BotFramework-Emulator
Microsoft Build of OpenJDK	OpenJDK distribution from Microsoft	https://microsoft.com/openjdk
Microsoft Dev Tunnels	Provides developers secure tunnels to share local web services	https://aka.ms/devtunnels/docs
Microsoft Edge	Multi-platform web browser	https://www.microsoft.com/en-us/edge?form=
Microsoft Edge Beta	Multi-platform web browser	https://www.microsoft.com/en-us/edge/download/insider?form=
Microsoft Edge Canary	Multi-platform web browser	https://explore.microsoft.com/en-us/edge/download/insider
Microsoft Edge Dev	Multi-platform web browser	https://www.microsoft.com/en-us/edge/download/insider?form=
Microsoft Excel	Spreadsheet software	https://www.microsoft.com/en-US/microsoft-365/excel
Microsoft NTFS for Mac by Paragon Software	Read/write support for NTFS formatted volumes	https://www.paragon-software.com/home/ntfs-mac/
Microsoft Office	Office suite	https://www.microsoft.com/en-us/microsoft-365/mac/microsoft-365-for-mac/
Microsoft Office BusinessPro	Office suite	https://www.microsoft.com/en-us/microsoft-365/mac/microsoft-365-for-mac/
Microsoft OneNote	Digital note taking app	https://www.microsoft.com/en-us/microsoft-365/onenote/digital-note-taking-app
Microsoft Outlook	Email client	https://www.microsoft.com/en-us/microsoft-365/outlook/outlook-for-business
Microsoft PowerPoint	Presentation software	https://www.microsoft.com/en-US/microsoft-365/powerpoint
Microsoft Remote Desktop	Remote desktop client	https://docs.microsoft.com/en-us/windows-server/remote/remote-desktop-services/clients/remote-desktop-mac
Microsoft Remote Help	Screen sharing and assistance tool for enterprise IT support	https://learn.microsoft.com/mem/intune/fundamentals/remote-help
Microsoft Teams	Meet, chat, call, and collaborate in just one place	https://www.microsoft.com/en/microsoft-teams/group-chat-software/
Microsoft Visual Studio Code	Open-source code editor	https://code.visualstudio.com/
Microsoft Visual Studio Code Insiders	Open-source code editor	https://code.visualstudio.com/insiders/
Microsoft Word	Word processor	https://www.microsoft.com/en-US/microsoft-365/word
Middle	Add middle click for Trackpad and Magic Mouse	https://middleclick.app/
MiddleClick	Utility to extend trackpad functionality	https://github.com/artginzburg/MiddleClick
MiddleDrag	Middle-click and middle-drag via three-finger trackpad gestures	https://middledrag.app/
MIDI Monitor	Display MIDI signals going in and out of your computer	https://www.snoize.com/MIDIMonitor/
Midi Router Client	Create routes from anywhere to anywhere	https://sourceforge.net/projects/midi-router-client/
Midi View	Monitor MIDI inputs and outputs	https://hautetechnique.com/midi/midiview/
midi-router-client	Create routes from anywhere to anywhere	https://sourceforge.net/projects/midi-router-client/
MidiKeys	Onscreen MIDI keyboard	https://www.manyetas.com/creed/midikeys.html
MIDITrail	MIDI player which provides 3D visualization of MIDI data sets	https://www.yknk.org/miditrail/en/
MIDITrail/MIDITrail	MIDI player which provides 3D visualization of MIDI data sets	https://www.yknk.org/miditrail/en/
MidiView	Monitor MIDI inputs and outputs	https://hautetechnique.com/midi/midiview/
Mighty Mike	Top-down action game from Pangea Software (a.k.a. Power Pete)	https://jorio.itch.io/mightymike
MiKTeX	TeX distribution	https://miktex.org/
MiKTeX Console	TeX distribution	https://miktex.org/
Milanote	Organise your ideas and projects into visual boards	https://www.milanote.com/
Milkman	Extensible request and response workbench	https://github.com/warmuuh/milkman
MilkyTracker	Music tracker compatible with FT2	https://milkytracker.org/
Millie	Korean e-book store	https://www.millie.co.kr/
Miln Movie Splitter	Split movies into smaller parts by chapter marker or duration	https://miln.eu/moviesplitter
Mimecast	Access to the Mime Cast email archive	https://mimecastsupport.zendesk.com/hc/en-us/articles/34000775267731-Mimecast-for-Mac-Overview
Mimecast for Mac	Access to the Mime Cast email archive	https://mimecastsupport.zendesk.com/hc/en-us/articles/34000775267731-Mimecast-for-Mac-Overview
Mimestream	Native app email client for Gmail	https://mimestream.com/
Min	Minimal browser that protects privacy	https://minbrowser.org/
mindforger	Thinking notebook and Markdown IDE	https://www.mindforger.com/
MindForger	Thinking notebook and Markdown IDE	https://www.mindforger.com/
MindMac	ChatGPT client	https://mindmac.app/
MindManager	Mind Mapping Tool	https://www.mindjet.com/mindmanager/
Mindmanager	Mind Mapping Tool	https://www.mindjet.com/mindmanager/
MindMaster	Mind mapping software	https://www.edrawsoft.cn/mindmaster/
Mindwtr	Local-first GTD productivity tool	https://github.com/dongdongbh/Mindwtr
Minecraft	Sandbox construction video game	https://minecraft.net/
Minecraft Education Edition	Educational version of Minecraft	https://education.minecraft.net/
Minecraft Server	Run a Minecraft multiplayer server	https://www.minecraft.net/en-us/
minecraft-edu	Educational version of Minecraft	https://education.minecraft.net/
Mini Program Studio	IDE for the development of Alipay applets	https://opendocs.alipay.com/mini/ide
Mini vMac	Allows modern computers to run software made for early Apple computers	https://www.gryphel.com/c/minivmac/
Miniconda	Minimal installer for conda	https://www.anaconda.com/docs/getting-started/miniconda/main
miniforge	Minimal installer for conda specific to conda-forge	https://github.com/conda-forge/miniforge
MiniProgramStudio	IDE for building mini programs	https://miniprogram.tngdigital.com.my/index
MiniSim	App for launching iOS and Android simulators	https://www.minisim.app/
Minitube	YouTube application	https://flavio.tordini.org/minitube
miniWOL	Small menu bar tool for sending Wake on LAN (WOL) network packets	https://www.tweaking4all.com/network-internet/miniwol2/
MiniZincIDE	Open-source constraint modelling language and IDE	https://www.minizinc.org/index.html
MinMaxCal	Minimal menu bar calendar, maximal full-screen notifications	https://github.com/MikeMcQuaid/MinMaxCal
mInstaller	Downloader and manager for MotionVFX products	https://www.motionvfx.com/
Mints	Logging tool suite	https://eclecticlight.co/mints-a-multifunction-utility/
mints122/Mints	Logging tool suite	https://eclecticlight.co/mints-a-multifunction-utility/
Mipony	Download manager	https://www.mipony.net/en/
Mirai	Inference engine for AI models	https://trymirai.com/
Miro	Online collaborative whiteboard platform	https://miro.com/
Mirror	Application that streams gameplay audio and video from your Playdate	https://play.date/mirror
Mission Control Plus	Manage your windows in Mission Control	https://fadel.io/MissionControlPlus
Missive	Team inbox and chat tool	https://missiveapp.com/
Mist	Utility that automatically downloads firmwares and installers	https://github.com/ninxsoft/Mist
Mister Plimsoll	Storage volume usage monitoring and fullness notifications	https://www.misterplimsoll.app/
MIT App Inventor	Android emulator	https://appinventor.mit.edu/explore/ai2/mac
mitmproxy	Intercept, modify, replay, save HTTP/S traffic	https://mitmproxy.org/
Mitti	Video playback software	https://imimot.com/mitti/
Mixed In Key	Harmonic mixing for DJs and music producers	https://mixedinkey.com/get11/
Mixed In Key 11	Harmonic mixing for DJs and music producers	https://mixedinkey.com/get11/
Mixed In Key Live	Get the Key and BPM of any audio, instantly	https://mixedinkey.com/live
Mixin	Cryptocurrency wallet	https://messenger.mixin.one/
Mixin Messenger Desktop	Cryptocurrency wallet	https://messenger.mixin.one/
Mixing Station	Audio mixer controller	https://mixingstation.app/
Mixxx	Open-source DJ software	https://www.mixxx.org/
MJML	Desktop app for MJML	https://mjmlio.github.io/mjml-app/
Mjolnir	Lightweight automation and productivity app	https://github.com/mjolnirapp/mjolnir
MKS	Mechanical keyboard simulator	https://github.com/x0054/MKS
MKVToolNix	GUI including a set of tools to create, alter and inspect Matroska files (MKV)	https://mkvtoolnix.download/
MKVtools	App to create and edit MKV videos	https://www.emmgunn.com/mkvtools-home/
mkvtools3.7.2/MKVtools	App to create and edit MKV videos	https://www.emmgunn.com/mkvtools-home/
MMD-QuickLook	Quick Look plugin for viewing MultiMarkdown	https://github.com/ttscoff/mmd-quicklook
mmex	Money management application	https://moneymanagerex.org/
mmhmm Desktop	Virtual video presentation software	https://www.mmhmm.app/product
mmhmm Studio	Virtual video presentation software	https://www.mmhmm.app/product
Mobirise	No-code website creator	https://mobirise.com/
Mochi	Study notes and flashcards using spaced repetition	https://mochi.cards/
Mochi Diffusion	Run Stable Diffusion natively	https://github.com/godly-devotion/MochiDiffusion
Mockoon	Create mock APIs in seconds	https://mockoon.com/
Mockplus	Create mockups and wireframes	https://www.mockplus.com/
Mockplus Classic	Create mockups and wireframes	https://www.mockplus.com/
Mockuuups Studio	Allows designers and marketers to drag and drop visuals into scenes	https://mockuuups.studio/
Modelio	Extensible modelling environment	https://www.modelio.org/
Modelio 4.1	Extensible modelling environment	https://www.modelio.org/
Modern CSV	CSV editor	https://www.moderncsv.com/
ModMove	Utility to move/resize windows using modifiers and the mouse	https://github.com/keith/modmove
Modrinth App	Minecraft modding platform	https://modrinth.com/
Moebius	ANSI editor	https://blocktronics.github.io/moebius/
Mole	Deep clean, analyze, and optimize app	https://mole.fit/
Molecular Evolutionary Genetics Analysis	Molecular evolution statistical analysis and construction of phylogenetic trees	https://megasoftware.net/
Molotov	French TV streaming service	https://www.molotov.tv/
Moment	Countdown app	https://fireball.studio/moment
Monal	XMPP chat client	https://monal-im.org/
Monarch	Spotlight Search	https://monarchlauncher.com/
Monero Wallet	Untraceable cryptocurrency wallet	https://getmonero.org/
monero-wallet-gui	Untraceable cryptocurrency wallet	https://getmonero.org/
Monet	Multi-engine mission control for coding agents	https://github.com/zenolab124/monet
Money Manager Ex	Money management application	https://moneymanagerex.org/
Moneydance	Personal financial management application focused on privacy	https://infinitekind.com/moneydance
MoneyManager	Finance manager	https://realbyteapps.com/
MoneyMoney	German banking and financial management software	https://moneymoney-app.com/
MongoDB	App wrapper for MongoDB	https://gcollazo.com/mongodb-app/
MongoDB Compass	Interactive tool for analyzing MongoDB data	https://www.mongodb.com/products/compass
MongoDB Compass Beta	GUI for MongoDB	https://www.mongodb.com/try/download/compass
MongoDB Compass Isolated	Interactive tool for analyzing MongoDB data	https://www.mongodb.com/products/compass
MongoDB Compass Isolated Edition	Interactive tool for analyzing MongoDB data	https://www.mongodb.com/products/compass
MongoDB Compass Readonly	Interactive tool for analyzing MongoDB data	https://www.mongodb.com/products/compass
Mongotron	Mongo DB management	https://github.com/officert/mongotron
Mongotron-darwin-x64/Mongotron	Mongo DB management	https://github.com/officert/mongotron
Mongrel	Database workbench with terminals, containers, Kubernetes, and API client	https://www.visorcraft.com/
MonitorControl	Tool to control external monitor brightness & volume	https://github.com/MonitorControl/MonitorControl
Mono	Open source implementation of Microsoft's .NET Framework	https://www.mono-project.com/
Monocle	Window dimming utility	https://www.heyiam.dk/monocle/
Monodraw	Tool to create text-based art	https://monodraw.helftone.com/
MonoFocus	Keep all tasks from your todo apps on your menu bar	https://monofocus.app/
Monokle	IDE dedicated to high-quality Kubernetes YAML configurations	https://github.com/kubeshop/monokle
Monolingual	Utility to remove unnecessary language resources from the system	https://ingmarstein.github.io/Monolingual/
Monologue	AI voice dictation that adapts to your writing style	https://www.monologue.to/
Monotype Desktop App	Font finder and organiser	https://support.monotype.com/en/articles/7860542-monotype-desktop-app
Moom	Utility to move and zoom windows—on one display	https://manytricks.com/moom/
Moonfin	Media streaming client for Jellyfin and Emby	https://moonfin.io/
Moonlight	GameStream client	https://moonlight-stream.org/
Mora Downloader	Online music and video store for the Japanese market	https://mora.jp/
Morgen	All-in-one calendars, tasks and scheduler	https://morgen.so/
Morisawa Desktop Manager	Manager for Morisawa Fonts	https://en.morisawafonts.com/
Mos	Smooths scrolling and set mouse scroll directions independently	https://mos.caldis.me/
Mosaic	Resize and reposition apps	https://lightpillar.com/mosaic.html
Moscow ML	Light-weight implementation of Standard ML	https://mosml.org/
Motion	To-do list and project management app	https://www.usemotion.com/
Motionik	Screen recording software	https://motionik.com/
Motrix	Open-source download manager	https://motrix.app/
Motrix Beta	Open-source download manager	https://motrix.app/
Motu M-Series	Audio interface driver for Motu M-Series (M2, M4, M6) audio interfaces	https://motu.com/en-us/download/product/408/
Mountain	Display notifications when mounting/unmounting volumes	https://appgineers.de/mountain/
Mountain Duck	Mounts servers and cloud storages as a disk on the desktop	https://mountainduck.io/
MountMate	Menubar app to easily manage external drives	https://homielab.com/en/page/mountmate
Mounty	Re-mounts write-protected NTFS volumes	https://mounty.app/
Mounty for NTFS	Re-mounts write-protected NTFS volumes	https://mounty.app/
Mouseless	Mouse control with the keyboard	https://mouseless.click/
Mouseless preview channel	Mouse control with the keyboard	https://mouseless.click/
Mousepose	Highlight your mouse pointer and cursor position	https://boinx.com/mousepose/overview/
Mouseposé	Highlight your mouse pointer and cursor position	https://boinx.com/mousepose/overview/
Moves	Window manager	https://github.com/mikker/Moves.app/
Movie Splitter	Split movies into smaller parts by chapter marker or duration	https://miln.eu/moviesplitter
Movist Pro	Media player	https://movistprime.com/
Mozilla Firefox	Web browser	https://www.mozilla.org/firefox/
Mozilla Firefox Beta	Web browser	https://www.mozilla.org/firefox/channel/desktop/#beta
Mozilla Firefox Developer Edition	Web browser	https://www.mozilla.org/firefox/developer/
Mozilla Firefox ESR	Web browser	https://www.mozilla.org/en-US/firefox/all/#product-desktop-esr
Mozilla Firefox Extended Support Release	Web browser	https://www.mozilla.org/en-US/firefox/all/#product-desktop-esr
Mozilla Firefox Nightly	Web browser	https://www.mozilla.org/firefox/channel/desktop/#nightly
Mozilla Thunderbird	Customizable email client	https://www.thunderbird.net/en-US/
Mozilla Thunderbird Beta	Customizable email client	https://www.thunderbird.net/en-US/download/beta/
Mozilla Thunderbird Daily	Customizable email client	https://www.thunderbird.net/en-US/download/daily/
Mozilla Thunderbird ESR	Customizable email client	https://www.thunderbird.net/en-US/download/esr/
Mozilla Thunderbird Extended Support Release	Customizable email client	https://www.thunderbird.net/en-US/download/esr/
Mozilla VPN	VPN client	https://vpn.mozilla.org/
mozregression GUI	Interactive regression range finder for Firefox and other Mozilla products	https://mozilla.github.io/mozregression/
mozregression-gui	Interactive regression range finder for Firefox and other Mozilla products	https://mozilla.github.io/mozregression/
MP3Gain Express	Port of MP3Gain and AACGain	https://projects.sappharad.com/mp3gain/
Mp3tag	Tool for editing metadata of audio files including MP3, FLAC, OGG, and more	https://mp3tag.app/
MP4tools	Create and edit MP4 videos	https://www.emmgunn.com/mp4tools-home/
mp4tools3.7.2/MP4Tools	Create and edit MP4 videos	https://www.emmgunn.com/mp4tools-home/
MPLab X IDE	IDE for Microchip's microcontrollers and digital signal controllers	https://www.microchip.com/en-us/tools-resources/develop/mplab-x-ide
MPLab XC16 Compiler	Compiler for 16-bit PIC and SAM MCUs and MPUs	https://www.microchip.com/mplab/compilers
MPLab XC32 Compiler	Compiler for 32-bit PIC and SAM MCUs and MPUs	https://www.microchip.com/en-us/tools-resources/develop/mplab-xc-compilers/xc32
MPLab XC8 Compiler	Compiler for 8-bit PIC and SAM MCUs and MPUs	https://www.microchip.com/en-us/tools-resources/develop/mplab-xc-compilers/xc8
MPluginManager	Installer for MeldaProduction audio plugins	https://www.meldaproduction.com/downloads
MPS	Create your own domain-specific language	https://www.jetbrains.com/mps/
mpv	Media player based on MPlayer and mplayer2	https://mpv.io/
mpv-arm64-0.40.0/mpv	Media player based on MPlayer and mplayer2	https://mpv.io/
MQTT.fx	IoT route testing tool	https://www.softblade.de/
MQTTX	Cross-platform MQTT 5.0 Desktop Client	https://mqttx.app/
MsgFiler	Keyboard-based email filing application for Apple Mail	https://msgfiler.com/
MsgFiler 4	Keyboard-based email filing application for Apple Mail	https://msgfiler.com/
Msty	Run LLMs locally	https://msty.app/
Msty Studio	AI platform with local and online models	https://msty.ai/
MstyStudio	AI platform with local and online models	https://msty.ai/
MTMR	TouchBar customization app	https://mtmr.app/
Mu	Small, simple editor for beginner Python programmers	https://codewith.mu/
Mu Editor	Small, simple editor for beginner Python programmers	https://codewith.mu/
Mubu	Outline note taking and management app	https://mubu.com/
muCommander	File manager with a dual-pane interface	https://www.mucommander.com/
mudlet	Multi-User Dungeon client	https://www.mudlet.org/
Mudlet	Multi-User Dungeon client	https://www.mudlet.org/
Muesli	Local-first dictation and meeting transcription	https://muesli.works/
MuJoCo	General purpose physics engine	https://mujoco.org/
Mullvad Browser	Web browser focused on privacy and on minimizing tracking and fingerprinting	https://mullvad.net/browser
Mullvad VPN	VPN client	https://mullvad.net/
Multi	Create apps from groups of websites	https://github.com/hkgumbs/multi
Multi MC	Minecraft launcher	https://multimc.org/
MultiFirefox	Launcher utility to run multiple versions of Firefox side-by-side	https://davemartorana.com/multifirefox/
MultiMC	Minecraft launcher	https://multimc.org/
Multipass	Orchestrates virtual Ubuntu instances	https://github.com/canonical/multipass/
MultiPatch	File patching utility	https://projects.sappharad.com/multipatch/
Multitouch	Add more gestures for Trackpad and Magic Mouse	https://multitouch.app/
MultiViewer	Unofficial desktop client for F1 TV	https://multiviewer.app/
Mumble	Open-source, low-latency, high quality voice chat software for gaming	https://www.mumble.info/
Mumble Snapshot	Open-source, low-latency, high quality voice chat software for gaming	https://mumble.info/
Mumu	Emoji picker	https://getmumu.com/
Mumu Player Pro	Android emulator	https://mumu.163.com/mac/
Mumu X	Utilises GPT-3 AI powered synonyms to find emojis and symbols	https://getmumu.com/
MuMuPlayer	Android emulator	https://mumu.163.com/mac/
MuMu模拟器Pro	Android emulator	https://mumu.163.com/mac/
Munki	Software installation manager	https://www.munki.org/munki/
MunkiAdmin	Tool to manage Munki repositories	https://hjuutilainen.github.io/munkiadmin/
MURAL	Visual online collaboration platform	https://mural.co/
MurGaa Random Mouse Clicker	Automate left, right and middle mouse button clicks	https://www.murgaa.com/
Murus	Firewall app	https://www.murusfirewall.com/
Murus Firewall	Firewall app	https://www.murusfirewall.com/
MusaicFM Screensaver	Screensaver displaying artwork based on Spotify or Last.fm profile data	https://github.com/docterd/MusaicFM
Muse	AI assistant for managing tasks, projects, and long-term goals	https://muse.ai/
Muse Code	Interactive terminal coding agent	https://dev.meta.ai/
Museeks	Music player	https://museeks.io/
MuseScore	Open-source music notation software	https://musescore.org/
MuseScore 4	Open-source music notation software	https://musescore.org/
Music Decoy	Music app blocker utility	https://lowtechguys.com/musicdecoy
Music MiniPlayer	Replica of the iTunes MiniPlayer	https://marioaguzman.github.io/musicminiplayer/
Music Presence	Discord music status that works with any media player	https://musicpresence.app/
Music Remote	Remote application for Music.app	https://marioaguzman.github.io/musicremote/
Music Widget	Replica of the iTunes widget for Dashboard	https://marioaguzman.github.io/musicwidget/
MusicBrainz Picard	Music tagger	https://picard.musicbrainz.org/
Musictube	Streaming music player	https://flavio.tordini.org/musictube
Musiver	Music client compatible with self-hosted music services	https://music.aqzscn.cn/
Mutedeck	Toggle mute, video, record, share, and leave a meeting in a call app	https://mutedeck.com/
MuteMe	Companion application to MuteMe	https://muteme.com/
MuteMe-Client	Companion application to MuteMe	https://muteme.com/
Muzzle	Silence embarrassing notifications while screensharing	https://muzzleapp.com/
MWeb Pro	Markdown writing, note taking, and static blog generator app	https://www.mweb.im/
Mx Power Gadget	Power management and monitoring for Apple Mx processors	https://www.seense.com/menubarstats/mxpg/
My TouchBar. My rules	TouchBar customization app	https://mtmr.app/
MyCard	Yu-Gi-Oh! Complete Card Simulator	https://mycard.moe/
MyCrypto	Ethereum wallet manager	https://mycrypto.com/
Mylio	Photo organiser	https://mylio.com/
MyMonero	Wallet for the Monero cryptocurrency	https://mymonero.com/
MySQL Shell	Interactive JavaScript, Python or SQL interface	https://dev.mysql.com/downloads/shell/
MySQL Workbench	Visual tool to design, develop and administer MySQL servers	https://www.mysql.com/products/workbench/
MySQLWorkbench	Visual tool to design, develop and administer MySQL servers	https://www.mysql.com/products/workbench/
Mysterium VPN	VPN client	https://www.mysteriumvpn.com/
MysteriumDark	VPN client	https://www.mysteriumvpn.com/
Mythic	Game launcher with the ability to run Windows games	https://getmythic.app/
n1ghtshade	Permits the downgrade/jailbreak of 32-bit iOS devices	https://github.com/synackuk/n1ghtshade
NagBar	Status bar monitor for Nagios, Icinga/2 and Thruk	https://sites.google.com/site/nagbarapp/home
Nagstamon	Nagios status monitor	https://nagstamon.de/
Name Mangler	Multi-file renaming tool	https://manytricks.com/namemangler/
NameChanger	Rename a list of files quickly	https://mrrsoftware.com/namechanger/
Nani	AI-powered translator	https://nani.now/
Nani Translate	AI-powered translator	https://nani.now/
Nano	Local node for the Nano cryptocurrency	https://nano.org/
nanoem	Cross-platform MMD (MikuMikuDance) compatible implementation	https://github.com/hkrn/nanoem
Nanoleaf Desktop	Control your Nanoleaf lights	https://nanoleaf.me/
Nanosaur	Dinosaur 3rd person shooter game from Pangea Software	https://jorio.itch.io/nanosaur
Nanosaur 2	Dinosaur 3rd person shooter game sequel from Pangea Software	https://jorio.itch.io/nanosaur2
Nanosaur II: Hatchling	Dinosaur 3rd person shooter game sequel from Pangea Software	https://jorio.itch.io/nanosaur2
nao	AI code editor for data	https://getnao.io/
NAPS2	Document scanning application	https://www.naps2.com/
NASA's Eyes	Learn about the earth, solar system, universe and the spacecraft exploring them	https://science.nasa.gov/eyes/
Nativ	Run AI models locally	https://blaizzy.github.io/nativ/
Native Access	Administration tool for Native Instruments products	https://www.native-instruments.com/en/specials/native-access-2/
Natron	Open-source node-graph based video compositing software	https://NatronGitHub.github.io/
Nault	Wallet for the Nano cryptocurrency with support for hardware wallets	https://github.com/Nault/Nault
NAVER Whale	Web browser	https://whale.naver.com/
Navicat Data Modeler	Database design tool	https://www.navicat.com/products/navicat-data-modeler
Navicat Data Modeler Essentials	Database design tool	https://www.navicat.com/products/navicat-data-modeler
Navicat for MariaDB	Database management and administration tool for MariaDB	https://www.navicat.com/products/navicat-for-mariadb
Navicat for MySQL	Database administration and development tool	https://www.navicat.com/products/navicat-for-mysql
Navicat for Oracle	Database administration and development tool for Oracle	https://www.navicat.com/products/navicat-for-oracle
Navicat for PostgreSQL	Database administration and development tool for PostgreSQL	https://www.navicat.com/products/navicat-for-postgresql
Navicat For SQL Server	Database administration and development tool for SQL-server	https://www.navicat.com/products/navicat-for-sqlserver
Navicat for SQL Server	Database administration and development tool for SQL-server	https://www.navicat.com/products/navicat-for-sqlserver
Navicat for SQLite	Database administration and development tool for SQLite	https://www.navicat.com/products/navicat-for-sqlite
Navicat Premium	Database administration and development tool	https://www.navicat.com/products/navicat-premium
Navicat Premium 15	Database administration and development tool	https://www.navicat.com/products/navicat-premium
Navicat Premium Lite	Database administration and development tool	https://www.navicat.com/products/navicat-premium-lite
Navigator	Companion app for ZSA's Navigator trackpad	https://www.zsa.io/voyager/navigator
Navigraph Charts	Access professional and updated Jeppesen charts for flight simulation	https://navigraph.com/
Navigraph Simlink	Link your Navigraph account with Flight Simulators	https://navigraph.com/
NCAR Command Language	Interpreted language for scientific data analysis and visualization	https://www.ncl.ucar.edu/
ncl	Interpreted language for scientific data analysis and visualization	https://www.ncl.ucar.edu/
NDI Tools	Tools & plugins for NDI	https://ndi.video/tools/
Neat	GitHub and Linear notifications on your desktop and menu bar	https://neat.run/
Neat Reader	Read, annotate and manage ePub books	https://www.neat-reader.com/
NeatReader	Read, annotate and manage ePub books	https://www.neat-reader.com/
NEGU Soft Ultimate Control	Take control of your computer wirelessly	https://www.negusoft.com/ucontrol/
Nektony App Cleaner & Uninstaller	Uninstaller and cleaning assistant	https://nektony.com/mac-app-cleaner
Nektony MacCleaner Pro	Delete junk, unnecessary files and folders, and speed up your computer	https://nektony.com/mac-cleaner-pro
Nektony VSD Viewer	Preview .VSD, .VDX, .VSDX file formats of Visio drawings	https://nektony.com/free-visio-viewer-mac
Nektony VSDX Annotator	Preview, edit and convert Visio drawings	https://nektony.com/products/vsdx-annotator-mac
Neo Network Utility	Network information and diagnostics utility	https://www.devontechnologies.com/apps/freeware
Neo4j Desktop	Developer IDE or Management Environment for Neo4j instances	https://neo4j.com/download/
Neo4j Desktop 2	Developer IDE or Management Environment for Neo4j instances	https://neo4j.com/download/
Neodisk	Read-only disk space visualiser	https://neodisk.app/
NeoFinder	Digital media asset manager	https://www.cdfinder.de/
NeoHtop	Htop on steroids	https://abdenasser.github.io/neohtop/
Neon	Light wallet for the NEO blockchain	https://github.com/CityOfZion/neon-wallet
Neon Vision Editor	Native code and text editor	https://github.com/h3pdesign/Neon-Vision-Editor
Neon Wallet	Light wallet for the NEO blockchain	https://github.com/CityOfZion/neon-wallet
Neovide	Neovim Client	https://github.com/neovide/neovide
Nessie	Knowledge base from AI chats	https://nessielabs.com/
Nestopia	Nintendo Entertainment System (NES) emulator	https://www.bannister.org/software/nestopia.htm
Nestopia v1.4.5/Nestopia	Nintendo Entertainment System (NES) emulator	https://www.bannister.org/software/nestopia.htm
NetBeans IDE	Development environment, tooling platform and application framework	https://netbeans.apache.org/
NetEase cloud music	Music streaming platform	https://music.163.com/
NetEase Mail Master	Email client	https://dashi.163.com/
NetEase POPO	Instant messaging platform	https://popo.netease.com/
NeteaseMusic	Music streaming platform	https://music.163.com/
Netflix	Third-party app to use Netflix outside the browser	https://github.com/jellybeansoup/macos-netflix
NethLink	Link NethServer systems and provide remote access tools	https://github.com/NethServer/nethlink
Netiquette	Network monitor	https://objective-see.org/products/netiquette.html
NetLogo	Multi-agent programmable modelling environment	https://www.netlogo.org/
NetNewsWire	Free and open-source RSS reader	https://netnewswire.com/
Netron	Visualiser for neural network, deep learning, and machine learning models	https://github.com/lutzroeder/netron
NetSpot	WiFi site survey software and WiFi scanner	https://www.netspotapp.com/
NetViews	Network and Wi-Fi diagnostic tool	https://www.netviews.app/
Network Radar	Tool to scan and monitor the network	https://www.witt-software.com/networkradar
Network Utility	Network information and diagnostics utility	https://www.devontechnologies.com/apps/freeware
Network Weather	Network diagnostics tool	https://www.networkweather.com/
NetXMS 6.2	Network and infrastructure monitoring and management system	https://netxms.com/
NetXMS Management Console	Network and infrastructure monitoring and management system	https://netxms.com/
Nexon Plug	Launcher for Nexon games	https://www.nexon.com/
Nextcloud	Desktop sync client for Nextcloud software products	https://nextcloud.com/
Nextcloud Talk	Official Nextcloud Talk Desktop client	https://nextcloud.com/talk/
Nextcloud Talk Desktop	Official Nextcloud Talk Desktop client	https://nextcloud.com/talk/
Nextcloud Virtual Files	Desktop sync client for Nextcloud software products	https://nextcloud.com/
ngrok	Reverse proxy, secure introspectable tunnels to localhost	https://ngrok.com/
nheko	Desktop client for the Matrix protocol	https://nheko-reborn.github.io/
Nheko	Desktop client for the Matrix protocol	https://nheko-reborn.github.io/
NICE DCV Viewer	Client for NICE DCV remote display protocol	https://www.amazondcv.com/
Nifty	Client for the Nifty project management platform	https://niftypm.com/
Nifty File Lists	Extract file metadata into exportable tables	https://www.publicspace.net/NiftyFileLists/
Niftyman	Access the Notion tool from the menu bar	https://shadowfax.app/niftyman
Nightfall	Menu bar utility for toggling dark mode	https://github.com/r-thomson/Nightfall/
Nightshade	Tool that makes images unsuitable for AI model training	https://nightshade.cs.uchicago.edu/
Nimbalyst	Visual workspace for building with Codex and Claude Code	https://nimbalyst.com/
Nimble Commander	Dual-pane file manager	https://magnumbytes.com/
nimblenote	Keyboard-driven note taking	https://nimblenote.app/
Ninja Download Manager	File download organiser and accelerator	https://ninjadownloadmanager.com/
Nisus Thesaurus	Electronic thesaurus for the 'Service' menu	https://nisus.com/Thesaurus/
Nitro PDF Pro	PDF editing software	https://www.gonitro.com/pdf
nkoda	Digital sheet music app	https://www.nkoda.com/download/mac
No-IP DUC	Keeps current IP address in sync	https://www.noip.com/download?page=mac
Node Version Switcher	Cross-platform tool for switching between versions and forks of Node.js	https://github.com/jasongin/nvs
NodeBox	Node-based data application for visualisation and generative design	https://www.nodebox.net/node/
Noise Suppression for Voice	Real-time Noise Suppression Plugin	https://github.com/werman/noise-suppression-for-voice
NoMachine	Remote desktop software	https://www.nomachine.com/
NoMachine Enterprise Client	Remote desktop software	https://www.nomachine.com/
Nook	Minimal browser with a sidebar-first design	https://browsewithnook.com/
NordLayer	Security software for business	https://nordlayer.com/
NordLocker	Store and sync files securely	https://nordlocker.com/
NordPass	Password manager	https://nordpass.com/
NordVPN	VPN client for secure internet access and private browsing	https://nordvpn.com/
Northern Softworks Cache Cleaner	General purpose system maintenance tool	https://www.northernsoftworks.com/tahoecachecleaner.html
NoSQL Workbench	Client-side GUI application for modern database development and operations	https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/workbench.html
NoSQLBooster for MongoDB	GUI tool and IDE for MongoDB	https://nosqlbooster.com/
NostalgiApp	Launcher for eXoDOS and retro game collections	https://www.nostalgi.app/
Nota	Markdown files editor	https://nota.md/
Nota Gyazo GIF	Screenshot and screen recording tool	https://gyazo.com/
Notchi	Notch companion for Claude Code	https://notchi.app/
NotchNook	Handy utility to manage and customize the notch area	https://lo.cafe/notchnook
Notebooks	Word processor	https://www.notebooksapp.com/mac/
Notepad.exe	Lightweight code editor	https://notepadexe.com/
Notes	Simple note-taking app for markdown and kanban	https://get-notes.com/
Notes Better	Simple note-taking app for markdown and kanban	https://get-notes.com/
Notesnook	Privacy-focused note taking app	https://notesnook.com/
NotesOllama	LLM support for Apple Notes through Ollama	https://smallest.app/notesollama/
Notion	App to write, plan, collaborate, and get organised	https://www.notion.com/
Notion Calendar	Calendar for professionals and teams	https://www.notion.com/product/calendar
Notion CLI	Command-line interface for Notion	https://www.notion.com/product/dev
Notion Enhanced	Enhancer/customiser for the all-in-one productivity workspace notion.so	https://notion-enhancer.github.io/
Notion Mail	Email client integrated with Notion workspace	https://www.notion.com/product/mail
Noto	Simple plain text editor	https://www.brunophilipe.com/software/noto/
noTunes	Simple application that will prevent iTunes or Apple Music from launching	https://github.com/tombonez/noTunes
Noun Project	Icon manager	https://thenounproject.com/
Nova	Native code editor	https://nova.app/
Novabench	Benchmark tool to quickly test and compare the computer's performance	https://novabench.com/
Novation Components	Manager and updater for Novation hardware	https://novationmusic.com/components/
Novation Play	Virtual instrument for Novation Launchkey MK4 hardware	https://novationmusic.com/software/novation-play/
NOW TV Player	Video streaming service player	https://www.nowtv.com/
NoxAppPlayer	Android emulator to play mobile games	https://www.bignox.com/
Nozbe	Project management app	https://nozbe.com/
nPerf	Internet speed test utility	https://www.nperf.com/
nRF Command Line Tools	Command-line tools for Nordic nRF Semiconductors	https://www.nordicsemi.com/Software-and-Tools/Development-Tools/nRF-Command-Line-Tools
nRF Connect for Desktop	Framework for development on BLE devices	https://www.nordicsemi.com/Products/Development-tools/nRF-Connect-for-Desktop
nrfutil	Unified CLI utility for Nordic Semiconductor products	https://www.nordicsemi.com/Products/Development-tools/nrf-util
NSLogger	Modern, flexible logging tool	https://github.com/fpillet/NSLogger
nteract	Interactive computing suite	https://github.com/nteract/desktop
Ntfstool	Utility that provides NTFS read and write support	https://github.com/ntfstool/ntfstool
NTFSTool	Utility that provides NTFS read and write support	https://github.com/ntfstool/ntfstool
Nuage	Free and open-source SoundCloud client	https://github.com/lbrndnr/nuage-macos
Nuclear	Streaming music player	https://nuclearplayer.com/
Nucleo	Icon manager and library	https://nucleoapp.com/
Nuclino	Collaborative wiki and knowledgebase	https://www.nuclino.com/
Nudge	Application for enforcing OS updates	https://github.com/macadmins/nudge
Nugget	Customise your iOS device with animated wallpapers, disable daemons and more	https://github.com/leminlimez/Nugget
Nulloy	Music player	https://nulloy.com/
Numi	Calculator and converter application	https://numi.app/
NuPhyIO	Keyboard configurator for NuPhy devices	https://www.nuphyio.com/
Nutstore	Cloud storage service platform	https://www.jianguoyun.com/
NVIDIA GeForce NOW	Cloud gaming platform	https://www.nvidia.com/en-us/geforce-now/download/
NVIDIA Nsight Compute	Interactive profiler for CUDA and NVIDIA OptiX	https://developer.nvidia.com/nsight-compute
NVIDIA Nsight Systems	System-wide performance analysis tool	https://developer.nvidia.com/nsight-systems
NVIDIA Personal AI Router	Local inference router for a group of compatible computers	https://github.com/NVIDIA/Personal-AI-Router
NVIDIA Sync	Utility for launching applications and containers on remote Linux systems	https://docs.nvidia.com/dgx/dgx-spark/nvidia-sync.html
NW.js	Call all Node.js modules directly from the DOM and Web Workers	https://nwjs.io/
nwjs-sdk-v0.115.0-osx-arm64/nwjs	Call all Node.js modules directly from the DOM and Web Workers	https://nwjs.io/
NWPusher	Send push notifications through Apple Push Notification Service	https://github.com/noodlewerk/NWPusher
NX Studio	Nikon suite for viewing, processing, and editing photos and videos	https://imaging.nikon.com/imaging/lineup/software/nx_studio/
NZBVortex	NZB client, optimised for performance and ease of use	https://www.nzbvortex.com/landing/
NZBVortex 3	NZB client, optimised for performance and ease of use	https://www.nzbvortex.com/landing/
OB-Xf	Virtual analog synthesizer	https://surge-synth-team.org/ob-xf/
Objective Sharpie	Tool used to generate C# interfaces starting from objective-c code	https://docs.microsoft.com/en-au/xamarin/cross-platform/macios/binding/objective-sharpie/
Objektiv	Browser switcher utility	https://github.com/nthloop/Objektiv
OBS	Open-source software for live streaming and screen recording	https://obsproject.com/
OBS Advanced Scene Switcher	Automated scene switcher for OBS Studio	https://obsproject.com/forum/resources/advanced-scene-switcher.395
OBS Background Removal	Virtual Green-screen and Low-Light Enhancement OBS Plugin	https://obsproject.com/forum/resources/background-removal-virtual-green-screen-low-light-enhance.1260
obs-websocket	Remote-control OBS Studio through WebSockets	https://github.com/obsproject/obs-websocket
Obscura VPN	VPN client	https://obscura.net/
Obsidian	Knowledge base that works on top of a local folder of plain text Markdown files	https://obsidian.md/
ocenaudio	Audio editor	https://www.ocenaudio.com/en
OCLint	Static source code analysis tool	https://github.com/oclint/oclint/
Octarine	Markdown-based note-taking app	https://octarine.app/
October	GUI for retrieving Kobo highlights and syncing them with Readwise	https://october.utf9k.net/
ODBC Manager	ODBC administrator	https://www.odbcmanager.net/
odrive	Tool to make any cloud storage unified, synchronised, shareable, and encrypted	https://www.odrive.com/
Offset Explorer	GUI for managing and using Apache Kafka clusters	https://www.kafkatool.com/index.html
Offset Explorer 4	GUI for managing and using Apache Kafka clusters	https://www.kafkatool.com/index.html
OK JSON	Scriptable JSON formatter and editor	https://okjson.app/
Oka Unarchiver	Free unarchiver	https://okaapps.com/product/1441507725
Oka Unarchiver 2 Website	Free unarchiver	https://okaapps.com/product/1441507725
Okta Advanced Server Access	Identity and access management	https://help.okta.com/asa/en-us/Content/Topics/Adv_Server_Access/docs/sft-osx.htm
Okta Verify	Identity verification provider	https://help.okta.com/eu/en-us/content/topics/end-user/ov-overview-macos.htm
Old School RuneScape	Game client for Old School RuneScape	https://oldschool.runescape.com/
Olive	Non-linear video editor	https://www.olivevideoeditor.org/
Ollama	Get up and running with large language models locally	https://ollama.com/
Ollamac	Interact with Ollama models	https://github.com/kevinhermawan/Ollamac
Olympus	Everest (Mod loader for video games Celeste) installer / manager	https://everestapi.github.io/
OmegaT	Translation memory tool	https://omegat.org/
OmegaT 5	Translation memory tool	https://omegat.org/
OmegaT_5.7.1_Beta_Mac_Notarized//OmegaT	Translation memory tool	https://omegat.org/
OmniDB	Web tool for database management	https://github.com/OmniDB/OmniDB/
OmniDiskSweeper	Finds large, unwanted files and deletes them	https://www.omnigroup.com/more/
OmniFocus	Scheduling application focusing on organisation	https://www.omnigroup.com/omnifocus/
OmniGraffle	Visual communication software	https://www.omnigroup.com/omnigraffle/
OmniOutliner	Note taking application and information organiser	https://www.omnigroup.com/omnioutliner/
OmniPlan	Project planning and management software	https://www.omnigroup.com/omniplan/
OmniPresence	Document syncing application	https://www.omnigroup.com/more
Omnissa Horizon Client	Virtual machine client	https://www.omnissa.com/
OmniWM	Tiling window manager	https://omniwm.app/
OndeSoft Audible Audiobook Converter	Audiobook converter	https://www.ondesoft.com/audible-audiobook-converter.html
Ondesoft AudioBook Converter	Audiobook converter	https://www.ondesoft.com/audible-audiobook-converter.html
One Switch	All system and utility switches in one place	https://fireball.studio/oneswitch
OneCast	Xbox remote play	https://www.onecast.me/
OneDrive	Cloud storage client	https://www.microsoft.com/en-us/microsoft-365/onedrive/online-cloud-storage
OneKey	Crypto wallet	https://onekey.so/
OneXray	Cross-platform Xray-core client	https://onexray.com/
OneXraySE	Cross-platform Xray-core client	https://onexray.com/
OnionShare	Securely and anonymously share files, host websites, and chat with friends	https://onionshare.org/
Onlook	Open-source visual editor for React apps	https://onlook.com/
Only Switch	System and utility switches	https://github.com/jacklandrin/OnlySwitch
ONLYOFFICE	Document editor	https://www.onlyoffice.com/
OnlySwitch	System and utility switches	https://github.com/jacklandrin/OnlySwitch
ontime	Time keeping for live events	https://getontime.no/
Ontime	Time keeping for live events	https://getontime.no/
OnyX	Verify system files structure, run miscellaneous maintenance and more	https://www.titanium-software.fr/en/onyx.html
OnyX Beta	Verify system files structure, run miscellaneous maintenance and more	https://www.titanium-software.fr/en/onyx.html
OP.GG	Game records and champion analysis	https://op.gg/desktop/
OP.GG Desktop	Game records and champion analysis	https://op.gg/desktop/
Opal	Screen time app	https://www.opal.so/
Opal Composer	Professional webcam software for the Opal C1	https://opalcamera.com/opal-composer
opcode	GUI app and toolkit for Claude Code	https://opcode.sh/
Open Data Editor	No-code application to explore, validate and publish data in a simple way	https://okfn.org/en/projects/open-data-editor/
Open Design	Local-first, agent-native design tool	https://open-design.ai/
Open Foris Collect	Data management for field-based inventories	https://openforis.org/solutions/collect/
Open Island	Native companion app for AI coding agents	https://github.com/Octane0411/open-vibe-island
Open Science	AI research workbench with scientific agents and notebooks	https://aipoch.com/open-science
Open Sound Meter	Sound measurement application for tuning audio systems in real-time	https://opensoundmeter.com/
Open Video Downloader	Cross-platform GUI for youtube-dl made in Electron and node.js	https://github.com/jely2002/youtube-dl-gui
Open WebUI	Desktop application for Open WebUI	https://openwebui.com/
Open-EID	Estonian ID-card drivers, authentication components & signing components	https://www.id.ee/en/article/install-id-software/
Open-Science	AI research workbench with scientific agents and notebooks	https://aipoch.com/open-science
OpenAudible	Audiobook manager for Audible users	https://openaudible.org/
OpenBCI	Connect to OpenBCI hardware, visualise and stream physiological data	https://openbci.com/
OpenBCI_GUI	Connect to OpenBCI hardware, visualise and stream physiological data	https://openbci.com/
OpenBoard	Interactive whiteboard application	https://openboard.ch/index.en.html
openboardview	File viewer for .brd files	https://openboardview.org/
OpenBoardView	File viewer for .brd files	https://openboardview.org/
OpenCat	Native AI chat client	https://opencat.app/
OpenChamber	Desktop and web interface for OpenCode AI agent	https://openchamber.dev/
OpenChrom	Data analysis for analytical chemistry	https://www.openchrom.net/
OpenClaw	Personal AI assistant	https://openclaw.ai/
OpenCloud Desktop	Desktop syncing client for OpenCloud	https://github.com/opencloud-eu/desktop
OpenCode	AI coding agent desktop client	https://opencode.ai/
OpenComic	Comic and Manga reader	https://opencomic.app/
OpenCore Configurator	OpenCore EFI bootloader configuration helper	https://mackie100projects.altervista.org/opencore-configurator/
OpenCore Legacy Patcher	Boot loader to inject/patch current features for unsupported Macs	https://dortania.github.io/OpenCore-Legacy-Patcher/
OpenCPN	Full-featured and concise ChartPlotter/Navigator	https://www.opencpn.org/
OpenDisk	Disk space analyser	https://opendisk.app/
OpenDisplay	Second-display utility for iPhone and iPad over USB and Wi-Fi	https://opendisplay.app/
OpenDNS Updater	Dynamic IP updater client	https://support.opendns.com/hc/en-us/articles/227987867
OpenDNSUpdater	Dynamic IP updater client	https://support.opendns.com/hc/en-us/articles/227987867
OpenEmu	Retro video game emulation	https://openemu.org/
Openframeworks	C++ toolkit for creative coding	https://openframeworks.cc/
OpenHuman	Personal AI assistant with local memory and integrations	https://tinyhumans.ai/openhuman
OpenHV	Pixel art science-fiction real-time strategy game	https://www.openhv.net/
OpenIn	Route links, emails, and files to your preferred apps	https://loshadki.app/openin4/
OpenInEditor-Lite	Finder Toolbar app to open the current directory in Editor	https://github.com/Ji4n1ng/OpenInTerminal
OpenInTerminal	Finder Toolbar app to open the current directory in Terminal or Editor	https://github.com/Ji4n1ng/OpenInTerminal
OpenInTerminal-Lite	Finder Toolbar app to open the current directory in Terminal	https://github.com/Ji4n1ng/OpenInTerminal
OpenJDK Early Access Java Development Kit	Early access development kit for the Java programming language	https://jdk.java.net/
OpenKey	Vietnamese input system	https://github.com/tuyenvm/OpenKey/
OpenLens	Open source build of Lens Kubernetes IDE	https://github.com/MuhammedKalkan/OpenLens/
OpenList Desktop	Desktop application for OpenList	https://github.com/OpenListTeam/OpenList-Desktop
OpenList-Desktop	Desktop application for OpenList	https://github.com/OpenListTeam/OpenList-Desktop
OpenLogi	Local-first alternative to Logitech Options+ for HID++ devices	https://openlogi.org/
OpenLP	Worship presentation software	https://openlp.org/
openMSX	MSX emulator	https://openmsx.org/
OpenMTP	Android file transfer	https://openmtp.ganeshrvel.com/
OpenMW	Open-source open-world RPG game engine that supports playing Morrowind	https://openmw.org/
OpenMW-CS	Open-source open-world RPG game engine that supports playing Morrowind	https://openmw.org/
OpenOffice	Free and open-source productivity suite	https://www.openoffice.org/
OpenPencil	Open-source design editor compatible with Figma	https://openpencil.dev/
OpenPHT	Community-driven fork of Plex Home Theater	https://github.com/RasPlex/OpenPHT
OpenPLC Editor	IDE for creating programs for the OpenPLC Runtime	https://github.com/Autonomy-Logic/openplc-editor
OpenRA	Real-time strategy game engine for Westwood games	https://www.openra.net/
OpenRA (playtest)	Real-time strategy game engine for Westwood games	https://www.openra.net/
OpenRA - Dune 2000	Real-time strategy game engine for Westwood games	https://www.openra.net/
OpenRA - Red Alert	Real-time strategy game engine for Westwood games	https://www.openra.net/
OpenRA - Tiberian Dawn	Real-time strategy game engine for Westwood games	https://www.openra.net/
OpenRCT2	Open-source re-implementation of RollerCoaster Tycoon 2	https://openrct2.io/
OpenRefine	Tool for working with messy data (previously Google Refine)	https://openrefine.org/
OpenRGB	Open source RGB lighting control that doesn't depend on manufacturer software	https://openrgb.org/
OpenRocket	Model rocket simulator	https://www.openrocket.info/
OpenSC	Smart card libraries and utilities	https://github.com/OpenSC/OpenSC/wiki
OpenSCAD	Programmable solid 3D CAD modeller	https://www.openscad.org/downloads.html#snapshots
OpenSCAD-2021.01	Programmable solid 3D CAD modeller	https://www.openscad.org/
OpenSesame	Graphical experiment builder for the social sciences	https://osdoc.cogsci.nl/
OpenShot Video Editor	Cross-platform video editor	https://openshot.org/
OpenShot Video Editor (Daily Build)	Cross-platform video editor	https://openshot.org/
OpenSim	Open-source alternative to SimPholders, written in Swift	https://github.com/luosheng/OpenSim/
OpenSong	Presentation software	https://www.opensong.org/
OpenSoundMeter	Sound measurement application for tuning audio systems in real-time	https://opensoundmeter.com/
OpenSubtitles FlixTools Lite	Downloads subtitles for movies	https://www.flixtools.com/
OpenSuperWhisper	Whisper dictation/transcription app	https://github.com/starmel/OpenSuperWhisper
OpenThesaurus Deutsch Dictionary plugin	German thesaurus for Apple Dictionary	https://tekl.de/lexikon-plug-ins/openthesaurus-deutsch-lexikon-plugin
OpenToonz	Open-source full-featured 2D animation creation software	https://opentoonz.github.io/e/index.html
OpenTTD	Collection of patches applied to OpenTTD	https://github.com/JGRennison/OpenTTD-patches/
OpenUsage	AI usage tracker for Cursor, Claude Code, Codex, Copilot and more	https://www.openusage.ai/
OpenVanilla	Provides common input methods	https://openvanilla.org/
OpenVisualTraceroute	Visual networking tool	https://visualtraceroute.net/
OpenVPN Connect client	Client program for the OpenVPN Access Server	https://openvpn.net/client-connect-vpn-for-mac-os/
OpenWebStart	Tool to run Java Web Start-based applications after the release of Java 11	https://openwebstart.com/
OpenWhispr	Privacy-first voice-to-text dictation with AI agents	https://github.com/OpenWhispr/openwhispr
OpenWork	Unofficial desktop GUI for OpenCode	https://openworklabs.com/
OpenZFS on OS X	ZFS driver and utilities	https://openzfsonosx.org/
Opera	Web browser	https://www.opera.com/
Opera Air	Web browser	https://www.opera.com/air
Opera Beta	Web browser	https://www.opera.com/computer/beta
Opera Developer	Web browser	https://www.opera.com/browsers/opera/developer
Opera GX	Alternate version of the Opera web browser to complement gaming	https://www.opera.com/gx
OperaChromiumDriver	Driver for Chromium-based Opera releases	https://github.com/operasoftware/operachromiumdriver
Optimage	Image optimisation tool	https://optimage.app/
Optimus Player	Media player	https://www.optimusplayer.com/
oracle	Virtual tabletop for multiplayer card games	https://cockatrice.github.io/
Oracle Java Standard Edition Development Kit	JDK from Oracle	https://www.oracle.com/java/technologies/downloads/
Oracle Java Standard Edition Development Kit Documentation	Documentation for the Oracle JDK	https://www.oracle.com/java/technologies/downloads/
Oracle VirtualBox	Virtualiser for arm64 hardware	https://www.virtualbox.org/
OracleDataModeler	Graphical tool for data modeling tasks	https://www.oracle.com/database/sqldeveloper/technologies/sql-data-modeler/
Orange	Component-based data mining software	https://orangedatamining.com/
Orbit	Multiple Google accounts in isolated sessions in one window	https://orbitformac.com/
Orbit for Mac	Multiple Google accounts in isolated sessions in one window	https://orbitformac.com/
OrbStack	Replacement for Docker Desktop	https://orbstack.dev/
orca	Generate images of interactive plotly charts	https://github.com/plotly/orca/
Orca	Generate images of interactive plotly charts	https://github.com/plotly/orca/
Orca Slicer	G-code generator for 3D printers	https://github.com/OrcaSlicer/OrcaSlicer
Orca Slicer Nightly	G-code generator for 3D printers	https://github.com/OrcaSlicer/OrcaSlicer
orcasheets	Local-first data analytics	https://orcasheets.ai/
OrcaSheets	Local-first data analytics	https://orcasheets.ai/
OrcaSlicer	G-code generator for 3D printers	https://github.com/OrcaSlicer/OrcaSlicer
Orchard	Native GUI for Apple Containers	https://github.com/andrew-waters/orchard
Origami Studio	Design tool for interactive interfaces	https://origami.design/
Original Prusa Drivers/PrusaSlicer	G-code generator for 3D printers (RepRap, Makerbot, Ultimaker etc.)	https://www.prusa3d.com/slic3r-prusa-edition/
Orion	WebKit based web browser	https://browser.kagi.com/
Orion Browser	WebKit based web browser	https://browser.kagi.com/
Orka CLI	Orchestration with Kubernetes on Apple	https://orkadocs.macstadium.com/docs
Orka Desktop	Run macOS virtual machines locally and build images for use with Orka	https://github.com/macstadium/orka-desktop
Orka VM TOOLS	Orchestration with Kubernetes on Apple	https://support.macstadium.com/hc/en-us
Orka3 CLI	Orchestration with Kubernetes on Apple	https://support.macstadium.com/hc/en-us/articles/42514244203419-Orka3-CLI-Overview-Configuration
osaurus	LLM server built on MLX	https://osaurus.ai/
Osaurus	LLM server built on MLX	https://osaurus.ai/
OSCAR	CPAP Analysis Reporter	https://www.sleepfiles.com/OSCAR/
OSCAR20	CPAP Analysis Reporter	https://www.sleepfiles.com/OSCAR/
Oscilloscope	Mimic the aesthetic of ray-oscilloscopes	https://github.com/kritzikratzi/Oscilloscope
OsiriX DICOM QuickLook	Quick Look plugin for OsiriX DICOM files	https://www.osirix-viewer.com/
OSMC	Free and open source media center	https://osmc.tv/
OSO Cloud CLI	Tool for interacting with OSO Cloud	https://www.osohq.com/docs/app-integration/client-apis/cli
osquery	SQL powered operating system instrumentation and analytics	https://osquery.io/
OSS Browser	Graphical management tool for OSS (Object Storage Service)	https://github.com/aliyun/oss-browser/
oss-browser-darwin-x64/oss-browser	Graphical management tool for OSS (Object Storage Service)	https://github.com/aliyun/oss-browser/
ossapp	Unified package manager	https://pkgx.app/
ossia score	Interactive sequencer for intermedia art	https://ossia.io/
osu!	Rhythm game	https://github.com/ppy/osu/
osu! (tachyon)	Rhythm game	https://github.com/ppy/osu/
osx-arm64/EmbyServer	Personal media server with apps on just about every device	https://emby.media/
osx64/Messenger Native	Facebook's Messenger Native	https://github.com/gastonmorixe/MessengerNative
OSXFUSE	File system integration	https://osxfuse.github.io/
Otto Matic	Science fiction 3D action/adventure game from Pangea Software	https://jorio.itch.io/ottomatic
Otty	Terminal emulator built for code agents	https://otty.sh/
Outerbase Studio	Database GUI	https://github.com/outerbase/studio-desktop
Outerbase Studio Desktop	Database GUI	https://github.com/outerbase/studio-desktop
OutFox	Extensible rhythm game engine based on StepMania	https://projectoutfox.com/
Outguess	Steganography tool to hide a document in an image	https://www.rbcafe.com/software/outguess/
Outline	Knowledge management tool	https://getoutline.com/
Outline Manager	Tool to create and manage Outline servers, powered by Shadowsocks	https://www.getoutline.org/
Output Factory	Automate printing and exporting from Adobe InDesign	https://zevrix.com/OutputFactory/
Output Factory Installer.app/Contents/Resources/appPackage/Output Factory	Automate printing and exporting from Adobe InDesign	https://zevrix.com/OutputFactory/
outset	Process packages and scripts during boot, login, or on demand	https://github.com/macadmins/outset
Overbridge	Integrate Elektron hardware into music software	https://www.elektron.se/overbridge
Overflow	Create interactive user flow diagrams	https://overflow.io/
Overflow 3	Visual application launcher	https://stuntsoftware.com/overflow/
Overlayed	Modern, open-source, and free voice chat overlay for Discord	https://overlayed.dev/
OverSight	Monitors computer mic and webcam	https://objective-see.org/products/oversight.html
Overt	Open app store	https://getovert.app/
Overtone Analyzer	Real-time voice spectrum analyzer and audio editor	https://www.sygyt.com/
Overview	Create live window previews for any application	https://williampierce.io/overview/
ovice	Virtual workplace for distributed teams	https://www.ovice.com/
Ovito	Scientific data visualization and analysis software	https://www.ovito.org/
OVITO	Scientific data visualization and analysis software	https://www.ovito.org/
OVITO Pro	Scientific data visualization and analysis software	https://www.ovito.org/
OwlOCR	On-device OCR for screenshots, images, and PDFs	https://owlocr.com/
ownCloud	Desktop syncing client for ownCloud	https://owncloud.com/
OwOCR	Optical character recognition for Japanese text	https://github.com/AuroraWright/owocr/
oXygen XML Developer	Tools for XML editing	https://www.oxygenxml.com/xml_developer.html
oXygen XML Editor	Tools for XML editing, including Oxygen XML Developer and Author	https://www.oxygenxml.com/xml_editor.html
p2p.kiwi	Cross-platform screen sharing tool	https://p2p.kiwi/
p4admin	Visual client for Helix Core	https://www.perforce.com/products/helix-core-apps/helix-visual-client-p4v
p4merge	Visual client for Helix Core	https://www.perforce.com/products/helix-core-apps/helix-visual-client-p4v
P4Merge	Visual client for Helix Core	https://www.perforce.com/products/helix-core-apps/helix-visual-client-p4v
p4v	Visual client for Helix Core	https://www.perforce.com/products/helix-core-apps/helix-visual-client-p4v
P4V	Visual client for Helix Core	https://www.perforce.com/products/helix-core-apps/helix-visual-client-p4v
Pacifist	Extract files and folders from package files, disk images, and archives	https://www.charlessoft.com/
Packages	Integrated packaging environment	http://s.sudre.free.fr/Software/Packages/about.html
Packet Peeper	Network protocol analyzer	https://github.com/choll/packetpeeper
Packet Sender	Network utility for sending / receiving TCP, UDP, SSL	https://packetsender.com/
PacketProxy	Local proxy written in Java	https://github.com/DeNA/PacketProxy
PacketSender	Network utility for sending / receiving TCP, UDP, SSL	https://packetsender.com/
Padloc	Modern password manager	https://padloc.app/
Pages Data Merge	Mail merge for Pages	https://iworkautomation.com/pages/script-tags-data-merge.html
Pagico	Tasks, files, and notes manager	https://www.pagico.com/
Paintbrush	Image editor	https://paintbrush.sourceforge.io/
PaintCode	Turn vector drawings into program code	https://www.paintcodeapp.com/
PAIR	Local inference router for a group of compatible computers	https://github.com/NVIDIA/Personal-AI-Router
PairPods	Share audio between two Bluetooth devices	https://pairpods.app/
Pale Moon	Web browser	https://www.palemoon.org/
Paletro	Command palette in any application	https://appmakes.io/paletro
Pally	AI Relationship Management	https://pally.com/
Palmier Pro	Video Editor built for AI	https://www.palmier.io/
PalmierPro	Video Editor built for AI	https://www.palmier.io/
Pandora	Desktop client for the Pandora web radio service	https://www.pandora.com/desktop
Pangolin	Identity-aware VPN and proxy for remote access	https://pangolin.net/
Panic Nova	Native code editor	https://nova.app/
Panoply	Plot geo-referenced data from netCDF, HDF, and GRIB	https://www.giss.nasa.gov/tools/panoply/
Panoply netCDF, HDF and GRIB Data Viewer	Plot geo-referenced data from netCDF, HDF, and GRIB	https://www.giss.nasa.gov/tools/panoply/
PanWriter	Markdown editor with pandoc integration and paginated preview	https://panwriter.com/
pap.er	Pap.er, 4K 5K HD Wallpaper Application	https://www.paperapp.net/
Paparazzi!	Utility to take screenshots of webpages	https://derailer.org/paparazzi/
Paper	Design tool for creating interfaces and prototypes	https://paper.design/
PaperCut Mobility Print Client	Client for printing to PaperCut Mobility Print queues	https://www.papercut.com/products/free-software/mobility-print/
Paperpile	Citation plugin for Microsoft Word	https://paperpile.com/word-plugin/
Papers	Reference management software for researchers	https://www.readcube.com/home
Paperspace	Desktop app for the Paperspace cloud computing platform	https://www.paperspace.com/app/
Papyrus	Unofficial Dropbox Paper desktop app	https://github.com/morkro/papyrus
Paragon CampTune	Manage disk space on Macs with Boot Camp	https://www.paragon-software.com/home/camptune/
Parallels Client	RDP client	https://www.parallels.com/products/ras/features/rdp-client/
Parallels Desktop	Desktop virtualization software	https://www.parallels.com/products/desktop/
Parallels Toolbox	Bundle with over 30 tools	https://www.parallels.com/products/toolbox/
Parallels Virtualization SDK	Desktop virtualization development kit	https://www.parallels.com/products/desktop/download/
Paranoia File & Text Encryption	File and text encryptor with steganography and post-quantum key exchange	https://paranoiaworks.mobi/pfte/
ParaView	Data analysis and visualization application	https://www.paraview.org/
ParaView-6.1.1	Data analysis and visualization application	https://www.paraview.org/
Pareto Security	Security checklist app	https://paretosecurity.com/
Parsec	Remote desktop	https://parsec.app/
ParseHub	Web scraping tool	https://www.parsehub.com/
Parsify	Extensible calculator with unit and currency conversions	https://parsify.app/
PartDesigner	Design your own LEGO parts	https://www.bricklink.com/v3/studio/partdesigner.page
Pascal compiler for Lazarus	Pascal compiler for Lazarus	https://www.lazarus-ide.org/
Pascal compiler source files for Lazarus	Pascal compiler source files for Lazarus	https://www.lazarus-ide.org/
Paseo	Self-hosted daemon for AI coding agents	https://paseo.sh/
Passepartout	OpenVPN and WireGuard client	https://partout.io/passepartout/
Password Gorilla	Password database manager	https://github.com/zdia/gorilla
Paste	Limitless clipboard	https://pasteapp.io/
Pastebot	Workflow application to improve productivity	https://tapbots.com/pastebot/
PasteNow	Clipboard manager	https://pastenow.app/
Path Finder	File manager	https://www.cocoatech.io/
PaulXStretch	Extreme time stretching plugin for audio files	https://github.com/essej/paulxstretch
PB for Desktop	Unofficial Pushbullet desktop app to get push notifications	https://sidneys.github.io/pb-for-desktop
PCoIPClient	Client for VM agents and remote workstation cards	https://anyware.hp.com/find/product/hp-anyware
PCSX2	Playstation 2 Emulator	https://pcsx2.net/
PCSX2-v2.8.2	Playstation 2 Emulator	https://pcsx2.net/
Pd	Visual programming language for multimedia	https://msp.ucsd.edu/software.html
Pd-0.56-5	Visual programming language for multimedia	https://msp.ucsd.edu/software.html
Pd-l2ork	Programming environment for computer music and multimedia applications	https://agraef.github.io/purr-data/
PDF Converter Master	Document converter	https://www.lightenpdf.com/pdf-converter-mac.html
PDF Expert	PDF reader, editor and annotator	https://pdfexpert.com/
PDF Pals	AI Chat with PDFs	https://pdfpals.com/
PDF Reader Pro	Read, annotate, edit, convert, create, OCR, fill forms and sign PDFs	https://www.pdfreaderpro.com/
PDF Squeezer	PDF compression tool	https://witt-software.com/pdfsqueezer/
PDF Toolbox	Utilities for working with PDF files	https://www.lightenpdf.com/pdf-toolbox-mac.html
PDF-Over	Digitally sign PDFs with the Austrian Buergerkarte or ID Austria	https://technology.a-sit.at/pdf-over/
PDFelement	Create, edit, convert and sign PDF documents	https://pdf.wondershare.com/
PDFelement Express	PDF editor	https://pdf.wondershare.com/pdfelement-express-mac.html
PDFify	Create searchable and smaller PDF	https://pdfify.app/
PDFKey Pro	Utility to unlock password-protected PDFs	https://pdfkey.com/en/
PDFpen	PDF editing software	https://smilesoftware.com/PDFpen
PDFpenPro	PDF editing software	https://smilesoftware.com/PDFpenPro
PDFsam Basic	Extracts pages, splits, merges, mixes and rotates PDF files	https://pdfsam.org/
PDL	Declarative language for creating reliable, composable LLM prompts	https://ibm.github.io/prompt-declaration-language/
PeakHour	Network bandwidth and network quality visualiser	https://old.peakhourapp.com/
PeakHour 4	Network bandwidth and network quality visualiser	https://old.peakhourapp.com/
Pearcleaner	Utility to uninstall apps and remove leftover files from old/uninstalled apps	https://itsalin.com/appInfo/?id=pearcleaner
Pecunia	Online banking app with support for HBCI	https://pecuniabanking.de/
Penc	Trackpad-oriented window manager	https://deniz.co/penc/
Pencil	GUI prototyping tool	https://pencil.evolus.vn/
Pencil2D	Open-source tool to make 2D hand-drawn animations	https://www.pencil2d.org/
Pencil2D Animation	Open-source tool to make 2D hand-drawn animations	https://www.pencil2d.org/
Peninsula	Notch app for window management	https://github.com/Celve/Peninsula
Perforce Helix Broker (P4Broker)	Version control	https://www.perforce.com/
Perforce Helix Command-Line Client (P4)	Use it to gain instant access to operations and complete control over the system	https://www.perforce.com/products/helix-core-apps/command-line-client
Perforce Helix Core Server	Version control	https://www.perforce.com/
Perforce Helix Proxy (P4P)	Version control	https://www.perforce.com/
Perforce Helix Versioning Engine (P4D)	Version control	https://www.perforce.com/
Perforce Helix Visual Client	Visual client for Helix Core	https://www.perforce.com/products/helix-core-apps/helix-visual-client-p4v
Perimeter 81	Zero trust network as a service client	https://perimeter81.com/
Permute	Converts and edits video, audio or image files	https://software.charliemonroe.net/permute/
Permute 4	Converts and edits video, audio or image files	https://software.charliemonroe.net/permute/
Perplexity	AI-powered answer engine with Personal Computer agent	https://www.perplexity.ai/personal-computer
Perplexity AI	AI-powered answer engine with Personal Computer agent	https://www.perplexity.ai/personal-computer
Persepolis	Download manager	https://persepolisdm.github.io/
Persepolis Download Manager	Download manager	https://persepolisdm.github.io/
Pester	Set, dismiss or snooze an alarm or timer	https://sabi.net/nriley/software/index.html#pester
Petdex	Desktop pet that reflects coding agent activity	https://petdex.dev/
Petrichor	Offline Music Player	https://petrichor.page/
pgAdmin 4	Administration and development platform for PostgreSQL	https://www.pgadmin.org/
pgAdmin4	Administration and development platform for PostgreSQL	https://www.pgadmin.org/
pgen	PostgreSQL client	https://pgendb.com/
PHD2	Telescope guiding software	https://openphdguiding.org/
Philips Hue Sync	Control your smart light system	https://www.philips-hue.com/en-us/explore-hue/propositions/entertainment/sync-with-pc
Phocus	RAW file image processing software for Hasselblad cameras	https://www.hasselblad.com/phocus/
Phoenix	Window and app manager scriptable with JavaScript	https://github.com/kasper/phoenix/
Phoenix Code	Code editor	https://phcode.io/
Phoenix Firestorm viewer for Second Life	Viewer for accessing Virtual Worlds	https://www.firestormviewer.org/
Phoenix Slides	Full-screen slideshow program	https://blyt.net/phxslides/
Phosphene	Custom video wallpapers for the desktop and lock screen	https://kagerou.glass/phosphene/
Photo Ninja	Professional RAW converter	https://www.picturecode.com/index.php
PhotosRevive	Colourise old black and white photos automatically	https://neededapps.com/photosrevive/
PhotoStickies	Show photos or camera feeds on the desktop	https://www.devontechnologies.com/apps/freeware
PhotoSweeper X	Tool to eliminate similar or duplicate photos	https://overmacs.com/
PhotoSync	Transfer and backup photos and videos	https://www.photosync-app.com/home.html
PhotoSync Companion	Transfer and backup photos and videos	https://www.photosync-app.com/home.html
PhotoZoom Pro	Software for enlarging and downsizing digital photos and graphics	https://www.benvista.com/photozoompro
PhpStorm	PHP IDE by JetBrains	https://www.jetbrains.com/phpstorm/
Physics 101	Collection of simulations, tools, and equations across the field of physics	https://www.praetersoftware.com/new/physics101/
pia	Privacy Impact Assessment Tool	https://github.com/LINCnil/pia
Pia	Privacy Impact Assessment Tool	https://github.com/LINCnil/pia
PiBar	Pi-hole(s) management in the menu bar	https://github.com/amiantos/pibar
PicFindr	Search engine & manager for free stock images	https://softorino.com/picfindr/
PicGo	Tool for uploading images	https://github.com/Molunerfinn/PicGo
Pichon	Search utility for icons8	https://icons8.com/
PicList	Cloud storage manager tool	https://piclist.cn/
Picmal	Converts and compresses images, video, audio and PDFs locally	https://picmal.app/
PicoScope	Test and measurement oscilloscope software for PicoScope oscilloscopes	https://www.picotech.com/
PicoScope beta	Test and measurement oscilloscope software for PicoScope oscilloscopes	https://www.picotech.com/
Pictogram	Customise and maintain app icons	https://pictogramapp.com/
Picture View	Image viewer	https://wl879.github.io/apps/picview/index.html
PictureView	Image viewer	https://wl879.github.io/apps/picview/index.html
PicView	Picture viewer	https://picview.org/
Pieces	Code snippets, screenshots and workflow context	https://pieces.app/
Pieces OS	Local datastore, server, and ML engine powering the Pieces for Developers Suite	https://pieces.app/
Piezo	Audio recording application	https://rogueamoeba.com/piezo/
Pika	Colour picker for colours onscreen	https://superhighfives.com/pika
PikoPixel	Pixel-art editor	https://twilightedge.com/mac/pikopixel/
PikPak	Client for PikPak cloud storage service	https://mypikpak.com/
Pile	Digital journaling app	https://udara.io/pile/
Pimosa	Photo, video, music and pdf editing tools	https://pimosa.app/
Pine	Native markdown editor	https://github.com/lukakerr/pine
Pinegrow	Web editor	https://pinegrow.com/
Ping Island	Menu bar status for coding agent sessions	https://erha19.github.io/ping-island/
PingID	Cloud-based, multi-factor authentication	https://www.pingidentity.com/
Pingnoo	Open-source cross-platform traceroute/ping analyser	https://www.pingnoo.com/
pingnoo	Open-source cross-platform traceroute/ping analyser	https://www.pingnoo.com/
PingPlotter	Network monitoring tool	https://www.pingplotter.com/
Pinta	Simple Gtk# Paint Program	https://www.pinta-project.com/
Pinwheel	Design systems and accessibility testing	https://bjango.com/mac/pinwheel/
PiP	Always on top window preview	https://github.com/amitv87/PiP
PiPHero	Menu bar app to picture-in-picture any window	https://piphero.app/
Pique	Quick Look extension for syntax-highlighted file previews	https://github.com/macadmins/pique
Piriform CCleaner	Remove junk and unused files	https://www.ccleaner.com/ccleaner-mac
Pitch	Collaborative presentation software	https://pitch.com/
pivy	Client for PIV cards	https://github.com/joyent/pivy
pixcake	AI photo editing software for commercial photography	https://www.pixcakeai.com/
PixCake	AI photo editing software for commercial photography	https://www.pixcakeai.com/
PiXel Check	Check your monitor for dead pixels	http://macguitar.me/apps/pixelcheck/
PiXel Check 1.3/PiXel Check	Check your monitor for dead pixels	http://macguitar.me/apps/pixelcheck/
Pixel Picker	Menu bar application to pick colours from your screen	https://github.com/acheronfail/pixel-picker
Pixelorama	2D sprite editor made with the Godot Engine	https://orama-interactive.itch.io/pixelorama
PixelSnap	Screen measuring tool	https://pixelsnap.com/
PixelSnap 2	Screen measuring tool	https://pixelsnap.com/
PixiEditor	Open Source Universal 2D Graphics Editor	https://pixieditor.net/
PixPin	Screenshot tool	https://pixpin.cn/
pktriot	Host server applications and static websites	https://packetriot.com/
PLaMo Translate	Translator focused on Japanese	https://translate.preferredai.jp/
PLaMo翻訳	Translator focused on Japanese	https://translate.preferredai.jp/
Plan	Calendar and project manager	https://getplan.co/login
Planet	Decentralised blogs and websites powered by IPFS and Ethereum Name System	https://www.planetable.xyz/
PlasicSCM - a Cloud Edition	Install PlasticSCM locally and join a Cloud Edition subscription	https://www.plasticscm.com/
Plasticity	3D modeling software for concept artists and designers	https://www.plasticity.xyz/
Platinum Notes	Improve audio quality of music files	https://mixedinkey.com/platinum-notes/
Platinum Notes 10	Improve audio quality of music files	https://mixedinkey.com/platinum-notes/
Platypus	Tool to create native applications from command-line scripts	https://sveinbjorn.org/platypus
Plaud	AI note-taking for online meetings, phone calls, and in-person conversations	https://www.plaud.ai/
Play	PlayStation 2 emulator	https://purei.org/
Play!	PlayStation 2 emulator	https://purei.org/
Playback	Play and manage Game Boy cartridges on your computer	https://www.epilogue.co/
PlayCover	Sideload iOS apps and games	https://github.com/PlayCover/PlayCover
Playdate Mirror	Application that streams gameplay audio and video from your Playdate	https://play.date/mirror
Playdate SDK	Playdate Lua and C APIs, docs and Simulator for local development	https://play.date/dev/
PlayMemories Home	Freeware that manages and edits photos and videos	https://support.d-imaging.sony.co.jp/www/disoft/int/download/playmemories-home/mac/en/
PlayOnMac	Allows installation and use of software designed for Windows	https://www.playonmac.com/
Plex	Home media player	https://www.plex.tv/
Plex HTPC	Home Theater PC media player	https://www.plex.tv/
Plex Media Server	Home media server	https://www.plex.tv/
Plexamp	Music player focusing on visuals	https://plexamp.com/
Pliim	One click and be ready to go up on stage and shine!	https://zehfernandes.github.io/pliim/
PlistEdit Pro	Property list and JSON editor	https://www.fatcatsoftware.com/plisteditpro/
Plot Digitizer	Digitize scanned plots of functional data	https://plotdigitizer.sourceforge.net/
Plover	Stenotype engine	https://opensteno.org/plover/
Plug	Music player for The Hype Machine	https://www.plugformac.com/
PlugData	Plugin wrapper for PureData	https://plugdata.org/
pluginval	Cross-platform plugin validator and tester application	https://www.tracktion.com/develop/pluginval
Plus42 Binary	RPN calculator based on HP-42S	https://thomasokken.com/plus42/
Plus42 Decimal	RPN calculator based on HP-42S	https://thomasokken.com/plus42/
Pock	Utility to display the Dock in the Touch Bar	https://pock.app/
Pocket Bard	TTRPG ambient audio and sound effects	https://www.pocketbard.app/
Pocket Casts	Podcast platform	https://play.pocketcasts.com/
Podman Desktop	Browse, manage, inspect containers and images	https://podman-desktop.io/
Podolski	Virtual analogue synthesiser	https://u-he.com/products/podolski/
Podpisuj	Application for electronic signing and validation of signatures	https://www.podpisuj.sk/
Poe	AI chat client	https://poe.com/
Poedit	Translation editor	https://poedit.net/
poi	Scalable KanColle browser and tool	https://poi.moe/
Pokemon Reborn	Third-party Pokemon game	https://www.rebornevo.com/
Pokemon TCG Live	Play the Pokémon Trading Card Game	https://tcg.pokemon.com/en-us/tcgl/
Pokemon Trading Card Game Live	Play the Pokémon Trading Card Game	https://tcg.pokemon.com/en-us/tcgl/
Poker Copilot	Online poker HUD and tracking software	https://pokercopilot.com/
PokerStars	Free-to-play online poker	https://www.pokerstars.net/
PokerTH	Free Texas hold'em poker	https://www.pokerth.net/
Polkadot-JS Apps	Portal into the Polkadot and Substrate networks	https://polkadot.js.org/
polkadot{.js}	Portal into the Polkadot and Substrate networks	https://polkadot.js.org/
Polymail	Email productivity application	https://polymail.io/
Polypane	Browser for ambitious developers	https://polypane.app/
polyphone	Soundfont editor for quickly designing musical instruments	https://www.polyphone.io/en
Polyphone	Soundfont editor for quickly designing musical instruments	https://www.polyphone.io/en
Pomatez	Pomodoro timer	https://zidoro.github.io/pomatez
Pomello	Turns your Trello cards into Pomodoro tasks	https://pomelloapp.com/
Pomotroid	Timer application	https://github.com/Splode/pomotroid
PongSaver	Screensaver which plays a game of Pong against itself	https://mikeash.com/software/pongsaver/
Pop	Remote pair programming	https://pop.com/
PopChar	Utility to display all characters of a font	https://www.ergonis.com/products/popcharx/
PopChar X	Utility to display all characters of a font	https://www.ergonis.com/products/popcharx/
PopClip	Used to access context-specific actions when text is selected	https://www.popclip.app/
popo_mac	Instant messaging platform	https://popo.netease.com/
PopSQL	Collaborative SQL editor	https://popsql.com/
PortalBox	Share a region of your screen in video calls	https://portalboxapp.com/
Portfolio Performance	Calculate the overall performance of an investment portfolio	https://www.portfolio-performance.info/en/
PortfolioPerformance	Calculate the overall performance of an investment portfolio	https://www.portfolio-performance.info/en/
Porting Kit	Install games and apps compiled for Microsoft Windows	https://portingkit.com/
PortX	SSH Client	https://portx.online/
portx	SSH Client	https://portx.online/
Positive Grid Bias FX 2	Guitar amp and effects processing software	https://www.positivegrid.com/products/bias-fx-2
Positron	Data science IDE	https://positron.posit.co/
Post Haste	Digital media project management tool	https://www.digitalrebellion.com/posthaste/
Postbird	Open-source PostgreSQL GUI client	https://github.com/Paxa/postbird
Postbox	Email client focusing on privacy protection	https://www.postbox-inc.com/
Postgres	App wrapper for Postgres	https://postgresapp.com/
PostgresPrefs	Preference Pane for controlling PostgreSQL database servers	https://github.com/MaccaTech/PostgresPrefs
Postico	GUI client for PostgreSQL databases	https://eggerapps.at/postico/v1.php
Postico 1	GUI client for PostgreSQL databases	https://eggerapps.at/postico/v1.php
Postico 2	GUI client for PostgreSQL databases	https://eggerapps.at/postico2/
Postman	Collaboration platform for API development	https://www.postman.com/
Postman Agent	Desktop agent for Postman on the Web	https://www.postman.com/downloads/postman-agent/
Postman Canary	Collaboration platform for API development	https://www.postman.com/
Postman CLI	CLI for command-line API management on Postman	https://www.postman.com/downloads/
PostmanCanary	Collaboration platform for API development	https://www.postman.com/
Posture Pal	Bad posture reminding tool	https://goodsnooze.gumroad.com/l/posturepal
pot	Software for text translation and recognition	https://pot-app.com/
Pot	Software for text translation and recognition	https://pot-app.com/
Powder Player	Torrent client and streaming media player	https://powder.media/
Powder Toy	Physics sandbox game	https://powdertoy.co.uk/
Power Manager	Utility to automate tasks and improve power management	https://dssw.co.uk/powermanager/
Power Monitor	Reports power adapter and battery status	https://github.com/SAP/power-monitoring-tool-for-macos
PowerPhotos	Tool to organise photo libraries	https://www.fatcatsoftware.com/powerphotos/
PowerShell	Command-line shell and scripting language	https://github.com/PowerShell/PowerShell
PPDuck	Integrates several image compression algorithms	https://ppduck.com/
PPDuck3	Integrates several image compression algorithms	https://ppduck.com/
PPPC Utility	Create configuration profiles containing a PPPC payload	https://github.com/jamf/PPPC-Utility
PPSSPP	PSP emulator	https://www.ppsspp.org/
PPSSPPSDL	PSP emulator	https://www.ppsspp.org/
Praat	Doing phonetics by computer	https://praat.org/
Precize	Detailed information for files, bundles and folders	https://eclecticlight.co/taccy-signet-precize-alifix-utiutility-alisma/
precize116/Precize	Detailed information for files, bundles and folders	https://eclecticlight.co/taccy-signet-precize-alifix-utiutility-alisma/
Preference Manager	Trash, backup, lock and restore video editor preferences	https://www.digitalrebellion.com/prefman/
PreferenceCleaner	Utility to simplify the task of deleting preference files	https://echomist.co.uk/software/PreferenceCleaner.php
PreferenceCleaner 2	Utility to simplify the task of deleting preference files	https://echomist.co.uk/software/PreferenceCleaner.php
PreForm	3D printing setup, management, and monitoring	https://formlabs.com/tools/preform/
Prefs Editor	Graphical user interface for the 'defaults' command	https://apps.tempel.org/PrefsEditor/
Prepros	Web development companion	https://prepros.io/
Presentify	Annotate screens, highlight cursors, and spotlight or zoom key areas	https://presentifyapp.com/
PrettyClean	Easy to use Disk Cleanup Tools	https://www.prettyclean.cc/
Pretzel	DMCA-safe music for creators	https://www.pretzel.rocks/
Prezi Next	Presentation software	https://prezi.com/
Prezi Video	Lets you interact with your content live as you stream or record	https://prezi.com/video/
Prince	Convert HTML to PDF	https://www.princexml.com/
Principle	Design animated and interactive user interfaces	https://principleformac.com/
Printopia	AirPrint to any printer	https://www.decisivetactics.com/products/printopia/
Printrun	Control your 3D printer from your PC	https://github.com/kliment/Printrun
Prism 11	Statistical analysis and graphing software	https://graphpad.com/
Prism Launcher	Minecraft launcher	https://prismlauncher.org/
Prisma Access Browser	Secure enterprise browser with built-in threat and data protection	https://get.pabrowser.com/welcome
Prisma Studio	Visual database editor for Prisma projects	https://www.prisma.io/studio
Pritunl	OpenVPN client	https://client.pritunl.com/
Privacy Preferences Policy Control Utility	Create configuration profiles containing a PPPC payload	https://github.com/jamf/PPPC-Utility
PrivacyNotes	End-to-end encrypted notes, tasks, files, journal, passwords and bookmark sync	https://privacynotes.app/
PrivadoVPN	VPN client	https://privadovpn.com/
Private Internet Access	VPN client	https://www.privateinternetaccess.com/
PrivateVPN	VPN provider	https://privatevpn.com/
Privileges	Admin rights switcher	https://github.com/SAP/macOS-enterprise-privileges
Prizmo	Scanning application with Optical Character Recognition (OCR)	https://creaceed.com/prizmo
Pro Picker	Colour picker	https://irradiated.net/tool/pro-picker/
Process Explorer	Jonathan Levin's procexp utility	https://www.newosxbook.com/tools/procexp.html
Processing	Flexible software sketchbook and a language for learning how to code	https://processing.org/
ProcessMonitor	Monitor process activity	https://objective-see.org/products/utilities.html#ProcessMonitor
ProcessSpy	Process monitor	https://process-spy.app/
Proclaim	Church presentation software	https://proclaim.logos.com/
Productive	Agency management system	https://productive.io/
ProfileCreator	Create standard or customised configuration profiles	https://github.com/ProfileCreator/ProfileCreator
ProFind	File search app	https://www.zeroonetwenty.com/profind/
Profit	Financial trading software from Nelogica	https://www.nelogica.com.br/
Programmer Dvorak	Keyboard layout for programmers	https://www.kaufmann.no/roland/dvorak/
Progressive Downloader	Download manager	https://www.macpsd.net/
ProjectLibre	Microsoft Project in your browser	https://www.projectlibre.com/
Prolific USB to Serial Cable driver	PL2303 USB-to-serial driver	https://www.prolific.com.tw/US/
ProNotes	Apple Notes extension	https://www.pronotes.app/
pronterface	Control your 3D printer from your PC	https://github.com/kliment/Printrun
ProPresenter	Presentation and production application for live events	https://renewedvision.com/propresenter/
ProScoreboard	Scoreboard software	https://renewedvision.com/proscoreboard/
Prosys OPC UA Browser	Browse and visualise data from OPC UA servers	https://prosysopc.com/products/opc-ua-browser/
Protege-5.6.9/Protégé	Ontology editor	https://protege.stanford.edu/
Protokol	MIDI and OSC Monitor	https://hexler.net/protokol
protokol	MIDI and OSC Monitor	https://hexler.net/protokol
Proton Drive	Client for Proton Drive	https://proton.me/drive
Proton Mail	Client for Proton Mail and Proton Calendar	https://proton.me/mail
Proton Mail Bridge	Bridges Proton Mail to email clients supporting IMAP and SMTP protocols	https://proton.me/mail/bridge
Proton Meet	Desktop client for Proton Meet	https://proton.me/meet
Proton Pass	Desktop client for Proton Pass	https://proton.me/pass
ProtonVPN	VPN client focusing on security	https://protonvpn.com/
ProtoPie	Create interactive prototypes	https://www.protopie.io/
Protégé	Ontology editor	https://protege.stanford.edu/
ProVideoPlayer	Presentation software	https://renewedvision.com/provideoplayer/
ProvisionQL	Quick Look plugin for mobile apps and provisioning profiles	https://github.com/ealeksandrov/ProvisionQL
Prowlarr	Indexer manager/proxy for various PVR apps	https://prowlarr.com/
ProWritingAid	Grammar checker, style editor, and writing mentor	https://prowritingaid.com/
Proxifier	Proxy client	https://www.proxifier.com/
Proxy Audio Device	Sound and audio controller	https://github.com/briankendall/proxy-audio-device
Proxy Audio Device Settings	Sound and audio controller	https://github.com/briankendall/proxy-audio-device
ProxyBridge	Proxy client with per-application traffic routing rules	https://interceptsuite.com/
Proxygen	HTTP proxy tool	https://proxygen.app/
Proxyman	HTTP debugging proxy	https://proxyman.com/
Prudent	Integrated environment for your personal and family ledger	https://prudent.me/
PrusaSlicer	G-code generator for 3D printers (RepRap, Makerbot, Ultimaker etc.)	https://www.prusa3d.com/slic3r-prusa-edition/
Présentation	Tool for pdf slides	https://iihm.imag.fr/blanch/software/osx-presentation/
PS Remote Play	Application to control your PlayStation 4 or PlayStation 5	https://remoteplay.dl.playstation.net/remoteplay/lang/en/
Psi	Instant messaging application designed for the XMPP network	https://psi-im.org/
Psi+	XMPP client designed for experienced users	https://psi-im.org/
Psiphon Conduit	Psiphon network proxy tool	https://conduit.psiphon.ca/
Psst	Spotify client	https://github.com/jpochyla/psst/
PsychoPy	Create experiments in behavioral science	https://www.psychopy.org/
Psysonic	Desktop client for Navidrome and other Subsonic-compatible servers	https://www.psysonic.de/
PTP Webcam	DSLR live view video plugin	https://ptpwebcam.org/
Publii	Static website generator	https://getpublii.com/
Pulsar	Text editor	https://pulsar-edit.dev/
Pulse SMS	Desktop client for Pulse SMS	https://home.pulsesms.app/overview/
puppetry	Web testing solution for non-developers on top of Puppeteer and Jest	https://puppetry.app/
Puppetry	Web testing solution for non-developers on top of Puppeteer and Jest	https://puppetry.app/
Pure Writer Desktop	Desktop version of the Android app	https://writer.drakeet.com/desktop
PureMac	Open-source application manager and system cleaner	https://github.com/momenbasel/PureMac
PureVPN	VPN client	https://www.purevpn.com/
Purr Data	Programming environment for computer music and multimedia applications	https://agraef.github.io/purr-data/
Purr-Data	Programming environment for computer music and multimedia applications	https://agraef.github.io/purr-data/
Pusher	Send push notifications through Apple Push Notification Service	https://github.com/noodlewerk/NWPusher
Puzzles	Collection of small computer programmes which implement one-player puzzle games	https://www.chiark.greenend.org.uk/~sgtatham/puzzles/
PXPlay	Third-party Remote Play client for PlayStation consoles	https://streamingdv.github.io/pxplay/
PyCharm	IDE for professional Python development	https://www.jetbrains.com/pycharm/
PyCharm CE	IDE for Python programming - Community Edition	https://www.jetbrains.com/pycharm/
PyCharm Edu	Professional IDE for scientific and web Python development	https://www.jetbrains.com/pycharm-edu/
PyCharm OSS	Open-source edition of PyCharm	https://github.com/JetBrains/intellij-community
PyCharm Professional	IDE for professional Python development	https://www.jetbrains.com/pycharm/
pyfa	Fitting tool for EVE Online	https://github.com/pyfa-org/Pyfa
PYM Player	Media player that automatically searches for subtitles	https://pym.uce.pl/pym-player/
Pynsource	Reverse engineer Python source code into UML	https://www.pynsource.com/
pyzo	Python IDE focused on interactivity and introspection	https://pyzo.org/
Pyzo	Python IDE focused on interactivity and introspection	https://pyzo.org/
Q Light Controller+	Control DMX or analogue lighting systems	https://www.qlcplus.org/
qBittorrent	Bittorrent client	https://github.com/c0re100/qBittorrent-Enhanced-Edition
qbittorrent	Peer to peer Bitorrent client	https://www.qbittorrent.org/
qBittorrent Enhanced Edition	Bittorrent client	https://github.com/c0re100/qBittorrent-Enhanced-Edition
QBlocker	Stops you from accidentally quitting an app	https://qblocker.com/
Qbserve	Automatic time tracker	https://qotoqot.com/qbserve/
QCAD	Free, open source application for computer aided drafting in 2D	https://www.qcad.org/
QCTools	Audiovisual analytics and filtering for video files	https://mediaarea.net/QCTools
QDirStat	Disk utilisation visualiser	https://github.com/jesusha123/qdirstat-macos/
qDslrDashboard	Application for controlling Nikon, Canon and Sony cameras	https://dslrdashboard.info/
qFlipper	Companion app for Flipper Zero devices	https://update.flipperzero.one/
QGIS	Geographic Information System	https://www.qgis.org/
QGIS LTR	Geographic Information System	https://www.qgis.org/
QGIS-final-4_2_2	Geographic Information System	https://www.qgis.org/
QGIS-LTR	Geographic Information System	https://www.qgis.org/
QGroundControl	Ground control station for drones	https://qgroundcontrol.com/
Qian Niu	Merchant workbench for Taobao and Tmall sellers	https://work.taobao.com/
Qianwen	AI assistant and chatbot powered by Alibaba's Qwen model	https://www.qianwen.com/qianwen
qianwen	AI assistant and chatbot powered by Alibaba's Qwen model	https://www.qianwen.com/qianwen
QIDI Studio	Slicer software for QIDI 3D printers	https://us.qidi3d.com/pages/qidi-studio
QIDIStudio	Slicer software for QIDI 3D printers	https://us.qidi3d.com/pages/qidi-studio
QinggIM	Wubi input method	https://qingg.im/mac/
QLab	Sound, video and lighting control	https://qlab.app/
QLAddict	Quick Look plugin for subtitle (.srt) files	https://github.com/tattali/QLAddict/
QLC+	Control DMX or analogue lighting systems	https://www.qlcplus.org/
QLColorCode	Quick Look plug-in that renders source code with syntax highlighting	https://github.com/jpc/QLColorCode
QLCommonMark	Quick Look plugin for CommonMark and Markdown	https://github.com/digitalmoksha/QLCommonMark/
QLFits	Quick Look plugin to view FITS files	https://github.com/onekiloparsec/QLFits
QLGradle	Quick Look plugin for viewing gradle files	https://github.com/Urucas/QLGradle
QLMarkdown	Quick Look generator for Markdown files	https://github.com/sbarex/QLMarkdown
QLMobi	Quick Look plugin for Kindle ebook formats	https://github.com/bfabiszewski/QLMobi
QLNetcdf	Quick Look plugin for viewing NetCDF files	https://github.com/tobeycarman/QLNetcdf/
qlplayground	Quick Look plugin for Swift files	https://github.com/norio-nomura/qlplayground
QLPrettyPatch	Quick Look plugin to view patch files	https://github.com/atnan/QLPrettyPatch
QLStephen	Quick Look plugin for plaintext files without an extension	https://whomwah.github.io/qlstephen/
QLSwift	Quick Look plugin for Swift files	https://github.com/lexrus/QLSwift
qlZipInfo	List out the contents of a zip file in the QuickLook preview	https://github.com/srirangav/qlZipInfo
QMK Toolbox	Toolbox companion for QMK Firmware	https://qmk.fm/
qmoji	Like mojibar, but written in reasonml	https://github.com/jaredly/qmoji
Qnap Qfinder Pro	NAS management application	https://www.qnap.com/en/utilities#utliity_5
Qnap Qsync	Automatic file synchronisation	https://www.qnap.com/en/utilities/essentials#utliity_3
Qnap QuDedup Extract Tool	Restoring deduplicated .qdff files to their normal status	https://www.qnap.com/en/utilities#utliity_18
Qobuz	Catalogue of hi-res music for streaming and download	https://www.qobuz.com/applications
Qobuz Downloader	Tool to download entire purchases simultaneously	https://www.qobuz.com/applications
QOwnNotes	Plain-text file notepad and todo-list manager	https://www.qownnotes.org/
QQ	Instant messaging tool	https://im.qq.com/index/#/macos
QQLive	Tencent video streaming and sharing platform	https://v.qq.com/download.html#mac
QQMusic	Chinese music streaming application	https://y.qq.com/
qqnews	Tencent News client	https://news.qq.com/
QQ音乐	Chinese music streaming application	https://y.qq.com/
QR Journal	Allows users with an iSight (or compatible) camera to read QR codes	https://www.joshjacob.com/mac-development/qrjournal.php
QSpace Pro	Better Finder alternative	https://qspace.awehunt.com/
Qt 3D Studio	Compositing tool	https://www.qt.io/developers/
Qt Creator	IDE for application development	https://www.qt.io/developers/
Qt Creator Dev	IDE for application development	https://www1.qt.io/developers/
Qt Design Studio	UI design and development tool	https://www.qt.io/product/ui-design-tools
qt_host_installer	Free and open source media center	https://osmc.tv/
QTH	APRS client application	https://www.w8wjb.com/wp/qth/
QtPass	Multi-platform GUI for pass, the standard unix password manager	https://qtpass.org/
QtSpim	Simulator that runs MIPS32 assembly language programmes	https://spimsimulator.sourceforge.net/
Quail	Unofficial but officially accepted esa app	https://github.com/1000ch/quail
QuakeNotch	MacBook Notch utility	https://quakenotch.com/
QuakeSpasm	Engine for iD software's Quake	https://quakespasm.sourceforge.net/
Quark Cloud Drive	Cloud storage and file management platform	https://pan.quark.cn/
QuarkCloudDrive	Cloud storage and file management platform	https://pan.quark.cn/
quarto	Scientific and technical publishing system built on Pandoc	https://www.quarto.org/
Quassel	IRC client	https://quassel-irc.org/
Quassel Client	Quassel IRC: Chat comfortably. Everywhere	https://quassel-irc.org/
Quassel IRC	Quassel IRC: Chat comfortably. Everywhere	https://quassel-irc.org/
quaternion	IM client for Matrix	https://github.com/quotient-im/Quaternion
Quaternion	IM client for Matrix	https://github.com/quotient-im/Quaternion
Quba	Viewer for electronic invoices	https://quba-viewer.org/
Quba-Viewer	Viewer for electronic invoices	https://quba-viewer.org/
Querious	MySQL and compatible databases tool	https://www.araelium.com/querious/
Querious 4	MySQL and compatible databases tool	https://www.araelium.com/querious/
quick look JSON	Quick Look plugin for JSON files	http://www.sagtau.com/quicklookjson.html
QuickApp Studio	Quickapp Development Tool	https://www.quickapp.cn/
QuickBooks 2023	Accounting software	https://quickbooks.intuit.com/desktop/
QuickBooks Desktop	Accounting software	https://quickbooks.intuit.com/desktop/
Quicken	Personal finance manager	https://www.quicken.com/products/classic-premier-deluxe-mac/
quickgeojson	Quick Look plugin for GeoJSON and TopoJSON	https://github.com/irees/quickgeojson
Quickhash	Data hashing tool	https://www.quickhash-gui.org/
Quickhash-GUI	Data hashing tool	https://www.quickhash-gui.org/
QuickJSON	Quick Look plugin to pretty-print JSON	https://github.com/johan/QuickJSON
QuickLook DDS	Quick Look plugin for DirectDraw Surface (DDS) texture files	https://github.com/Marginal/QLdds
QuickLook Video	Thumbnails, static previews, cover art and metadata for video files	https://github.com/Marginal/QuickLookVideo
quicklook-pfm	Quick Look plugin for PPM, PGM, PFM and PBM files	https://github.com/lnxbil/quicklook-pfm
QuickLookASE	Quick Look generator for Adobe Swatch Exchange files	https://github.com/rsodre/QuickLookASE
QuickLookCSV	Quick Look plugin for CSV files	https://github.com/p2/quicklook-csv
QuickNFO	Quick Look plugin for viewing NFO files	https://github.com/planbnet/QuickNFO
Quicksilver	Productivity application	https://qsapp.com/
QuickTune	QuickTime 7 style Apple Music controller	https://marioaguzman.github.io/quicktune/
Quiet	Private, p2p alternative to Slack and Discord built on Tor & IPFS	https://tryquiet.org/
Quip	Tool for teams to create living documents	https://quip.com/
QuitAll	Quickly quit one, some, or all apps	https://amicoapps.com/app/quitall/
Quitter	Automatically hides or quits apps after periods of inactivity	https://marco.org/apps#quitter
Quixel Bridge	3D asset manager	https://quixel.com/
Quo	Business phone for professionals, teams, and companies	https://www.quo.com/
Quod Libet	Music player and music library manager	https://quodlibet.readthedocs.io/
QuodLibet	Music player and music library manager	https://quodlibet.readthedocs.io/
qutebrowser	Keyboard-driven, vim-like browser based on PyQt5	https://www.qutebrowser.org/
qView	Image viewer	https://github.com/jurplel/qView/
qwerty-fr keyboard layout	QWERTY-based layout. Type EU languages, greek, math, currencies, & more!	https://qwerty-fr.org/
QXmlEdit	XML editor	https://qxmledit.org/
R	Environment for statistical computing and graphics	https://www.r-project.org/
r-rig-app	R Installation Manager	https://github.com/r-lib/rig
RabbitMQ	App wrapper for RabbitMQ	https://jpadilla.github.io/rabbitmqapp/
Racket	Modern programming language in the Lisp/Scheme family	https://racket-lang.org/
Radar	Check important metrics from the menubar	https://getradar.co/
Radarr	Fork of Sonarr to work with movies à la Couchpotato	https://radarr.video/
Radial	Gesture-based launcher for apps, text snippets, and scripts	https://radial.appverge.net/
Radio Silence	Network monitor and firewall	https://radiosilenceapp.com/
Radiola	Internet radio player for the menu bar	https://github.com/SokoloffA/radiola
Radix	Disk space analyzer	https://tryradix.app/
Raider.io Client	World of Warcraft client to track Mythic+ and Raid Progression	https://raider.io/
RaiderIO	World of Warcraft client to track Mythic+ and Raid Progression	https://raider.io/
Raindrop.io	All-in-one bookmark manager	https://raindrop.io/
Rambox	Workspace simplifier - to organize your workspace and boost your productivity	https://rambox.app/
Rancher Desktop	Kubernetes and container management on the desktop	https://rancherdesktop.io/
Random Mouse Clicker	Automate left, right and middle mouse button clicks	https://www.murgaa.com/
RansomWhere	Protect your personal files	https://objective-see.org/products/ransomwhere.html
RapidAPI	HTTP client that helps testing and describing APIs	https://paw.cloud/
RapidWeaver	Web design software	https://www.realmacsoftware.com/rapidweaver/
RAR Archiver	Archive manager for data compression and backups	https://www.rarlab.com/
Raspberry Pi Imager	Imaging utility to install operating systems to a microSD card	https://www.raspberrypi.com/software/
Rave	Social streaming app	https://rave.io/
Raven Reader	News reader with flexible settings	https://ravenreader.app/
Raw Photo Processor	Process raw photos	https://www.raw-photo-processor.com/RPP/Overview.html
Raw Photo Processor 64	Process raw photos	https://www.raw-photo-processor.com/RPP/Overview.html
RawTherapee	RAW photo processor	https://rawtherapee.com/
Ray	Debug with Ray to fix problems faster	https://myray.app/
Raycast	Control your tools with a few keystrokes	https://raycast.com/
Rayon	AI-powered drawing for interior designers and architects	https://www.rayon.design/download
Raze	Build engine port backed by GZDoom tech	https://raze.zdoom.org/about
Razer macOS	Open source colour effects manager for Razer devices	https://github.com/1kc/razer-macos
RazorSQL	SQL query tool and SQL editor	https://razorsql.com/
Rclone UI	GUI for Rclone	https://github.com/rclone-ui/rclone-ui
RcloneView	GUI for rclone	https://rcloneview.com/
rcmd	App switcher driven by the Right Command key	https://lowtechguys.com/rcmd/
RDM	Set a Retina display to custom resolutions	https://github.com/usr-sse2/RDM
re:AMP	WinAMP clone written in SwiftUI	https://re-amp.ru/
React Native Debugger	Standalone app for debugging React Native apps	https://github.com/jhen0409/react-native-debugger
React Proto	React application prototyping tool for developers and designers	https://react-proto.github.io/react-proto
React Studio	App design environment	https://reactstudio.com/
React-Proto	React application prototyping tool for developers and designers	https://react-proto.github.io/react-proto
Reactotron	Desktop app for inspecting React JS and React Native projects	https://github.com/infinitered/reactotron
ReactStudio	App design environment	https://reactstudio.com/
ReadCube Papers	Reference management software for researchers	https://www.readcube.com/home
Reader	Save articles to read, highlight key content, and organise notes for review	https://readwise.io/read/
Readest	Ebook reader	https://readest.com/
Readmo Reading	Traditional Chinese eBook service	https://readmoo.com/
Readmoo看書	Traditional Chinese eBook service	https://readmoo.com/
Readwise iBooks	Import highlights from Apple Books to Readwise	https://readwise.io/ibooks
Readwise Reader	Save articles to read, highlight key content, and organise notes for review	https://readwise.io/read/
Readwise_iBooks	Import highlights from Apple Books to Readwise	https://readwise.io/ibooks
ReadyAPI Desktop	Automated API testing platform	https://smartbear.com/product/ready-api/
ReadyAPI-4.2.0	Automated API testing platform	https://smartbear.com/product/ready-api/
Real VNC Server	Remote desktop server application	https://www.realvnc.com/
REALFORCE for Mac	Software for Realforce keyboards and mice	https://www.realforce.co.jp/
Realm Studio	Tool for the Realm Database and Realm Platform	https://realm.io/products/realm-studio/
RealtimeBoard	Online collaborative whiteboard platform	https://miro.com/
RealVNC Connect	Remote desktop client and server application	https://www.realvnc.com/
RealVNC Connect Viewer	Remote desktop application focusing on security	https://www.realvnc.com/
reAMP	WinAMP clone written in SwiftUI	https://re-amp.ru/
REAPER	Digital audio production application	https://www.reaper.fm/
Reborn	Third-party Pokemon game	https://www.rebornevo.com/
Recaf	Java bytecode editor	https://www.coley.software/Recaf
ReceiptQuickLook	Quick Look plugin to visualise App Store cryptographic receipts	https://github.com/letiemble/ReceiptQuickLook
Receipts	Document management	https://receipts-app.com/
Recents	File launcher	https://recentsapp.com/
Rectangle	Move and resize windows using keyboard shortcuts or snap areas	https://rectangleapp.com/
Rectangle Pro	Window snapping tool	https://rectangleapp.com/pro
Recut	Remove silence from videos and automatically generate a cut list	https://getrecut.com/
Red Eclipse	Multiplayer & singleplayer first person shooter	https://www.redeclipse.net/
REDCINE-X PRO	Transcode and manipulate REDCODE RAW footage	https://www.red.com/
redeclipse	Multiplayer & singleplayer first person shooter	https://www.redeclipse.net/
Redis	App wrapper for Redis	https://jpadilla.github.io/redisapp/
Redis Insight	GUI for streamlined Redis application development	https://redis.io/insight/
redis-pro	Redis desktop	https://github.com/cmushroom/redis-pro
Redot	Multi-platform 2D and 3D game engine	https://redotengine.org/
Redot Engine	Multi-platform 2D and 3D game engine	https://redotengine.org/
RedQuits	Quit an app when closing the last window	http://carsten-mielke.com/redquits.html
redream	Dreamcast emulator	https://redream.io/
Refine	Grammar checker	https://refine.sh/
Reflect	Note taking app for meetings, ideas, journalling, and research	https://reflect.app/
Reflect Notes	Note taking app for meetings, ideas, journalling, and research	https://reflect.app/
Reflector	Wireless screen-mirroring application	https://www.airsquirrels.com/reflector/
Reflector 2	Wireless screen-mirroring application	https://www.airsquirrels.com/reflector/
Reflector 4	Wireless screen-mirroring application	https://www.airsquirrels.com/reflector/
Reflex	Media key forwarder for Music (iTunes) and Spotify	https://stuntsoftware.com/reflex/
ReiKey	Scans, detects, and monitors keyboard taps	https://objective-see.org/products/reikey.html
Reiner SCT cyberJack driver	Driver for REINER SCT cyberJack smart card readers	https://www.reiner-sct.com/
rekordbox	Free Dj app to prepare and manage your music files	https://rekordbox.com/en/
Relay	Menu bar app for building LLM prompts from files, clipboard and voice notes	https://github.com/msllrs/relay/
reManager	Desktop app for managing mods on reMarkable tablets	https://github.com/rmitchellscott/reManager
Remember The Milk	To-do app	https://www.rememberthemilk.com/
Reminders MenuBar	Simple menu bar app to view and interact with reminders	https://github.com/DamascenoRafael/reminders-menubar
RemNote	Spaced-repetition powered note-taking tool	https://www.remnote.com/
Remote Buddy	Control apps and web videos from your phone	https://www.iospirit.com/products/remotebuddy/
Remote Desktop Manager	Centralises all remote connections on a single platform	https://mac.remotedesktopmanager.com/
Remote Viewer	Connect to virtual machines using SPICE	https://www.spice-space.org/osx-client.html
Remote Wake Up	Wake up devices with a click of a button	https://www.witt-software.com/remotewakeup/
RemoteHamRadio	Desktop console app for RemoteHamRadio service	https://www.remotehamradio.com/
RemoteViewer	Connect to virtual machines using SPICE	https://www.spice-space.org/osx-client.html
Remotix Agent	Remote desktop and monitoring solution	https://remotixcloud.com/
remove.bg	Automatic bulk background removal	https://www.remove.bg/
Ren'Py	Visual novel engine in Python	https://www.renpy.org/
RenameClick	Local-first AI app for file renaming and organisation	https://rename.click/
Renamer	Batch file renamer application	https://renamer.com/
Reolink	Client for viewing and managing security cameras and NVRs	https://reolink.com/software-and-manual/
Reolink Client	Client for viewing and managing security cameras and NVRs	https://reolink.com/software-and-manual/
Repetier-Host	3D printing application	https://www.repetier.com/
Repetier-Host Mac	3D printing application	https://www.repetier.com/
Replacicon	App icon replacement utility	https://replacicon.app/
ReplayWeb.page	Web archive viewer for WARC and WACZ files	https://replayweb.page/
Replicator	Tool to migrate data granularly between Jamf Pro servers	https://github.com/jamf/Replicator
Replit	Software development and deployment platform	https://replit.com/
Repo Prompt	Prompt generation tool	https://repoprompt.com/
RepoBar	Menu bar dashboard for GitHub repository health	https://repobar.app/
RepoZ	Zero-conf git repository hub	https://github.com/awaescher/RepoZ
Reqable	Advanced API Debugging Proxy	https://reqable.com/
Requestly	Intercept and modify HTTP requests	https://requestly.com/
RescueTime	Time optimising application	https://www.rescuetime.com/
Resilio Sync	File sync and share software	https://www.resilio.com/
Resolume Arena	Video mapping software	https://resolume.com/
Resolutionator	Use any of your display's available resolutions	https://manytricks.com/resolutionator/
Responsively	Modified browser that helps in responsive web development	https://responsively.app/
ResponsivelyApp	Modified browser that helps in responsive web development	https://responsively.app/
RestApia	HTTP API client	https://www.restapia.app/
Restfox	Offline-first web HTTP client	https://restfox.dev/
Restic Browser	GUI to browse and restore restic backup repositories	https://github.com/emuell/restic-browser
Restic-Browser	GUI to browse and restore restic backup repositories	https://github.com/emuell/restic-browser
Restream Chat	Keep your streaming chats in one place	https://restream.io/chat/
Retcon	Drag-and-drop Git history editor	https://retcon.app/
Retrace	Local-first screen recording and search application	https://retrace.to/
Retro Virtual Machine	ZX Spectrum and Amstrad CPC emulator	https://www.retrovirtualmachine.org/
Retro Virtual Machine 2.1	ZX Spectrum and Amstrad CPC emulator	https://www.retrovirtualmachine.org/
Retroactive	Run Apple apps on incompatible OS versions	https://github.com/cormiertyshawn895/Retroactive
Retroactive 3.0/Retroactive	Run Apple apps on incompatible OS versions	https://github.com/cormiertyshawn895/Retroactive
RetroArch	Frontend for emulators, game engines and media players (OpenGL graphics API)	https://www.retroarch.com/
RetroArch Metal Nightly	Frontend for emulators, game engines, and media players (Metal graphics API)	https://www.retroarch.com/
Retrobatch	Batch image processor	https://flyingmeat.com/retrobatch/
retroshare	Friend-2-Friend and secure decentralised communication platform	https://retroshare.cc/
RetroShare	Friend-2-Friend and secure decentralised communication platform	https://retroshare.cc/
Retrospective	Log analysis tool	https://retrospective.centeractive.com/
Reunion	Genealogy (family tree) app	https://www.leisterpro.com/
Reunion 14	Genealogy (family tree) app	https://www.leisterpro.com/
Reveal	Powerful runtime view debugging for iOS developers	https://revealapp.com/
Reverso	Text translation application	https://context.reverso.net/translation/windows-mac-app
Revisionist	Opens up the full power of the versioning system	https://eclecticlight.co/revisionist-deeptools/
revisionist110/Revisionist	Opens up the full power of the versioning system	https://eclecticlight.co/revisionist-deeptools/
Revolver Office	Project management tool	https://www.revolver.info/
RevPDF Editor	PDF editor for annotation and editing	https://revpdf.com/
Rewind	Record and search your screen and audio	https://www.rewind.ai/
RewriteBar	AI-powered writing assistant	https://rewritebar.com/
Rhino 8	3D model creator	https://www.rhino3d.com/
Rhinoceros	3D model creator	https://www.rhino3d.com/
Ricochet Refresh	Private and anonymous instant messaging over tor	https://www.ricochetrefresh.net/
RICOH THETA	Companion software for 360 degree cameras	https://theta360.com/en/support/download/pcmac/
Rider	.NET IDE	https://www.jetbrains.com/rider/
Ridibooks	Ebook reader	https://ridibooks.com/support/app/download
RightFont	Font manager that helps preview, install, sync and manage fonts	https://rightfontapp.com/
RingCentral	Team messaging, video meetings, and business phone	https://www.ringcentral.com/download.html
RingCentral Classic	VOIP and message application	https://www.ringcentral.com/apps/rc-classic
RingCentral for Mac	Phone system manager	https://www.ringcentral.com/apps/rc-phone
RingCentral Phone	Phone system manager	https://www.ringcentral.com/apps/rc-phone
rio	Hardware-accelerated GPU terminal emulator	https://github.com/raphamorim/rio/
Rio	Hardware-accelerated GPU terminal emulator	https://github.com/raphamorim/rio/
Ripcord	Desktop chat client for Slack (and Discord)	https://cancel.fm/ripcord/
RipMe	Album ripper for various websites	https://github.com/RipMeApp/ripme
Rippling	MDM for Rippling	https://www.rippling.com/device-management
RipX	Music stem separation and repair utility	https://hitnmix.com/
Rive	Design tool that creates functional graphics	https://rive.app/
RiverScript	AI platform for recording and transcribing system audio from any app	https://riverscript.com/
RiverScript client	AI platform for recording and transcribing system audio from any app	https://riverscript.com/
Riverside Studio	Podcast and video recorder	https://riverside.fm/
Rivet	Open-source visual AI programming environment	https://rivet.ironcladapp.com/
Rize	AI time tracker	https://rize.io/
Rnote	Sketch and take handwritten notes	https://rnote.flxzt.net/
Roam	Virtual office	https://ro.am/
Roam Research	Note-taking tool for networked thought	https://roamresearch.com/
RoaringApps	Show installed app compatibility information	https://roaringapps.com/mac-app
Roblox	Online multiplayer game platform	https://www.roblox.com/
Roblox Studio	Roblox IDE to build your experiences	https://create.roblox.com/
RobloxPlayer	Online multiplayer game platform	https://www.roblox.com/
RobloxStudio	Roblox IDE to build your experiences	https://create.roblox.com/
RoboFont	Font editor	https://robofont.com/
RoboForm	Password manager and form filler application	https://www.roboform.com/
Rockbox Utility	Automated installer for the Rockbox digital music player firmware	https://www.rockbox.org/wiki/RockboxUtility
RockboxUtility	Automated installer for the Rockbox digital music player firmware	https://www.rockbox.org/wiki/RockboxUtility
Rocket	Emoji picker optimised for blind people	https://matthewpalmer.net/rocket/
Rocket Typist	Text expander for common phrases	https://witt-software.com/rockettypist/
Rocket.Chat	Official desktop client for Rocket.Chat	https://rocket.chat/
Rocketman Choices Packager	Utility for customising installer package choices	https://github.com/Rocketman-Tech/Rocketman-Choices-Packager
Rocks'n'Diamonds	Arcade-style game	https://www.artsoft.org/rocksndiamonds/
Rockxy	HTTP proxy	https://rockxy.io/
Rode Central	RØDE companion app	https://rode.com/en/apps/rode-central
Rode Connect	Podcasting software	https://rode.com/en-us/software/rodeconnect
RODE Virtual Channels	Virtual Device Driver for RODECASTER Pro II	https://rode.com/en/user-guides/rodecaster-pro-ii/virtual-devices
RODECaster App	Easily manage your RØDECaster or Streamer X setup	https://rode.com/en/apps/rodecaster-app
Roku Remote Tool	Configuration tool	https://devtools.web.roku.com/RokuRemote/
roku_remote_tool	Configuration tool	https://devtools.web.roku.com/RokuRemote/
rolisteam	Virtual tabletop software	https://rolisteam.org/
Rolisteam	Virtual tabletop software	https://rolisteam.org/
Roon	Music player	https://roonlabs.com/
Roon Bridge	Music player network extender	https://roon.app/
RoonBridge	Music player network extender	https://roon.app/
RoslynPad	C# editor and runner based on Roslyn	https://roslynpad.net/
Rotato	Mockup generator & animator 3D	https://rotato.app/
rotki	Portfolio tracking and accounting tool	https://rotki.com/
Rotki	Portfolio tracking and accounting tool	https://rotki.com/
RouteConverter	GPS tool to display, edit, enrich and convert routes, tracks and waypoints	https://www.routeconverter.com/
Routine	Calendar for productive people	https://www.routine.co/
Rouvy	Indoor cycling and workout app	https://rouvy.com/
ROUVY	Indoor cycling and workout app	https://rouvy.com/
Rowboat	Open-source AI coworker, with memory	https://www.rowboatlabs.com/
Rowmote Helper	Control system with Rowmote Pro remote control	https://regularrateandrhythm.com/apps/rowmote-pro/
Royal TSX	Remote management solution	https://www.royalapps.com/ts/mac/features
rq	Record analysis and transformation tool	https://github.com/dflemstr/rq
RStudio	Data science software focusing on R and Python	https://posit.co/products/open-source/rstudio/
RStudio Daily	Data science software focusing on R and Python	https://dailies.rstudio.com/
RsyncUI	GUI for rsync	https://github.com/rsyncOSX/RsyncUI
RubyMine	Ruby on Rails IDE	https://www.jetbrains.com/ruby/
RuneLite	Client for Old School RuneScape	https://runelite.net/
RunJS	JavaScript playground that auto-evaluates as code is typed	https://runjs.app/
RuntimeViewer	Inspect Objective-C and Swift runtime interfaces	https://github.com/MxIris-Reverse-Engineering/RuntimeViewer
Runway	UML (Unified Modelling Language) design app	https://celestialteapot.com/runway/
Rustcast	Application and utility launcher	https://rustcast.app/
RustDesk	Open source virtual/remote desktop application	https://rustdesk.com/
RustRover	Rust IDE	https://www.jetbrains.com/rust/
RuSwitcher	Keyboard layout switcher	https://github.com/rashn/RuSwitcher
RWTS PDFwriter	Print driver for printing documents directly to a pdf file	https://github.com/rodyager/RWTS-PDFwriter
Ryver	Team communication and collaboration software	https://ryver.com/
RØDE Unify	Virtual mixing software	https://rode.com/en/apps/unify
Sabaki	Go board and SGF editor	https://sabaki.yichuanshen.de/
SABnzbd	Binary newsreader	https://sabnzbd.org/
Saega	Dictation app for Swedish and Norwegian	https://saega.app/
Safari Technology Preview	Web browser	https://developer.apple.com/safari/resources/
Safe Exam Browser	Web browser environment to carry out e-assessments safely	https://safeexambrowser.org/
SafeInCloud Password Manager	Cross-platform AES-256 password manager	https://www.safe-in-cloud.com/
Sage	Mathematics software system	https://www.sagemath.org/
SageMath-10-9	Mathematics software system	https://www.sagemath.org/
SakuraLauncher	Launcher of SakuraFrp	https://www.natfrp.com/tunnel/download
Saleae Logic	Signal analysis for Saleae's devices	https://www.saleae.com/
Saleae Logic2	Signal analysis for Saleae's devices	https://www.saleae.com/
Salesforce CLI	CLI tools for Salesforce	https://developer.salesforce.com/tools/salesforcecli
Salt	Automation and infrastructure management engine	https://saltproject.io/
SameBoy	Game Boy and Game Boy Color emulator	https://sameboy.github.io/
Samsung Magician Software	Manage Samsung internal and portable SSDs, memory cards, and USB flash drives	https://semiconductor.samsung.com/consumer-storage/support/tools/
Sanctum	Run LLMs locally	https://sanctum.ai/
SaneSideButtons	Menu bar app that enables system-wide navigation using side mouse buttons	https://janhuelsmann.com/sanesidebuttons
Santa	Binary authorization system	https://github.com/northpolesec/santa
SAOImage DS9	Astronomical data visualisation tool	https://sites.google.com/cfa.harvard.edu/saoimageds9/home
SAOImageDS9	Astronomical data visualisation tool	https://sites.google.com/cfa.harvard.edu/saoimageds9/home
SAP Business Technology Platform Command Line Interface	CLI for the SAP Business Technology Platform	https://tools.hana.ondemand.com/#cloud-cpcli
SapMachine OpenJDK Development Kit	OpenJDK distribution from SAP	https://sapmachine.io/
SatDump	Generic satellite data processing software	https://www.satdump.org/
Satellite Eyes	Changes your desktop wallpaper to the satellite view of where you are	https://satelliteeyes.tomtaylor.co.uk/
satyrn	Jupyter client	https://satyrn.app/
Satyrn	Jupyter client	https://satyrn.app/
Sauce Connect	Proxy server to securely connect to the Sauce Labs automated testing platform	https://docs.saucelabs.com/secure-connections/sauce-connect-5/
Sauerbraten	Multiplayer & singleplayer first person shooter	http://sauerbraten.org/
SaveHollywood Screensaver	Screen saver for custom video files	http://s.sudre.free.fr/Software/SaveHollywood/about.html
Savoir-faire Linux Ring	Decentralised instant messenger and softphone	https://jami.net/
sbarex QLMarkdown	Quick Look generator for Markdown files	https://github.com/sbarex/QLMarkdown
SC Menu	Simple smartcard menu item	https://github.com/boberito/sc_menu
ScaleFT	Identity and access management	https://help.okta.com/asa/en-us/Content/Topics/Adv_Server_Access/docs/sft-osx.htm
ScanSnap Home	Fujitsu ScanSnap Scanner software	https://www.fujitsu.com/global/products/computing/peripheral/scanners/soho/sshome/
SCAP Workbench	SCAP Scanner And Tailoring Graphical User Interface	https://www.open-scap.org/tools/scap-workbench/
scap-workbench	SCAP Scanner And Tailoring Graphical User Interface	https://www.open-scap.org/tools/scap-workbench/
Scapple	Notepad software	https://www.literatureandlatte.com/scapple.php
Scatter	Desktop wallet for EOS	https://get-scatter.com/
Scene Builder	Drag & drop GUI designer for JavaFX	https://gluonhq.com/products/scene-builder/
Scene Maestro	Remote control video playback on Scenica Player-equipped hosts	https://sceni.ca/en/scene-maestro/
SceneBuilder	Drag & drop GUI designer for JavaFX	https://gluonhq.com/products/scene-builder/
Scenica Player	Turn your device into an on-set player	https://sceni.ca/en/player/
Schism Tracker	Oldschool sample-based music composition tool	https://github.com/schismtracker/schismtracker
Sci-Hub EVA	Cross-platform Sci-Hub GUI application powered by Python and Qt	https://github.com/leovan/SciHubEVA
Scid vs. Mac	Chess toolkit	https://scidvspc.sourceforge.net/
scidavis	Application for scientific data analysis and visualization	https://scidavis.sourceforge.net/
SciDAVis	Application for scientific data analysis and visualization	https://scidavis.sourceforge.net/
ScidvsMac	Chess toolkit	https://scidvspc.sourceforge.net/
Scilab	Software for numerical computation	https://www.scilab.org/
scilab-2026.1.0	Software for numerical computation	https://www.scilab.org/
SciTools Understand	Code visualization and exploration tool	https://scitools.com/features
Scoot	Keyboard-driven cursor actuator	https://github.com/mjrusso/scoot
Scout-App	Simple Sass processor	https://scout-app.io/
Scrapp	Screenshot tool with cloud storage	https://scrapp.me/
Scratch	Programmes interactive stories, games, and animations	https://scratch.mit.edu/download
Scratch 3	Programmes interactive stories, games, and animations	https://scratch.mit.edu/download
Screaming Frog Log File Analyser	SEO log audit tool	https://www.screamingfrog.co.uk/log-file-analyser/
Screaming Frog SEO Spider	SEO site audit tool	https://www.screamingfrog.co.uk/seo-spider/
Screen Studio	Screen recorder and editor	https://screen.studio/
Screenflick	Screen recorder with audio	https://www.araelium.com/screenflick-mac-screen-recorder
ScreenFlow	Screen recording and video editing software	https://www.telestream.net/screenflow/
ScreenFocus	Tool to manage multiple screens	https://www.apptorium.com/screenfocus
ScreenKite	Screen recorder and editor	https://www.screenkite.com/
ScreenMemory	Record your screen and go back in time to see what you worked on	https://screenmemory.app/
Screens Assist	Share screens link	https://edovia.com/en/screens-assist/
Screens Connect	Remote desktop software	https://edovia.com/en/screens-connect/
Scribus	Free and open-source page layout program	https://www.scribus.net/
Scribus-1.7.3	Free and open-source page layout program	https://www.scribus.net/
Script Debugger	Integrated development environment focused entirely on AppleScript	https://latenightsw.com/
Script Kit	Create and run scripts	https://www.scriptkit.com/
ScriptQL	AppleScript Quick Look plugin	https://kainjow.com/
Scrivener	Word processing software with a typewriter style	https://www.literatureandlatte.com/scrivener/overview
Scroll	Configure scrolling on Trackpad and Magic Mouse	https://ryanhanson.dev/scroll
Scroll Reverser	Tool to reverse the direction of scrolling	https://pilotmoon.com/scrollreverser/
Scrolla	Scroll with the keyboard using Vim motions	https://scrolla.app/
Scrub	Cleans folders and volumes to guard against potential leaks of sensitive data	https://eclecticlight.co/lockrattler-systhist/
scrub13/Scrub	Cleans folders and volumes to guard against potential leaks of sensitive data	https://eclecticlight.co/lockrattler-systhist/
Sculptor	GUI for Claude Code	https://imbue.com/sculptor/
ScummVM	Run classic graphical adventure and role-playing games	https://www.scummvm.org/
SD Formatter	Tool to format memory cards complying with the SD File System spec	https://www.sdcard.org/downloads/formatter/
SdkManager	Manage SDKs and download device definitions for Garmin Connect IQ development	https://developer.garmin.com/connect-iq/sdk/
SDM	StrongDM client	https://www.strongdm.com/
sdm	StrongDM client	https://www.strongdm.com/
Seadrive	Manual for Seafile server	https://www.seafile.com/en/home/
Seafile Client	File syncing client	https://www.seafile.com/
Seam	Productivity-first Dynamic Island for your Notch	https://getseam.app/
Seamly2D	Pattern making software	https://seamly.io/
SeaMonkey	Development of SeaMonkey Internet Application Suite	https://www.seamonkey-project.org/
Second Life Viewer	3D browsing software for Second Life online virtual world	https://secondlife.com/
Secretive	Store SSH keys in the Secure Enclave	https://github.com/maxgoedjen/secretive
Secure Pipes	Manage SSH tunnels	https://www.opoet.com/pyro/index.php/
SecureSafe	Highly secure online storage with password manager	https://www.securesafe.com/
SecuritySpy	Multi-camera CCTV software	https://www.bensoftware.com/securityspy/
SeekFast	Search text in documents and files	https://seekfast.org/
SEGGER Embedded Studio for Arm and RISC-V	IDE for embedded systems	https://www.segger.com/products/development-tools/embedded-studio/
Segger J-Link Command Line Tools	Software and Documentation pack for Segger J-Link debug probes	https://www.segger.com/downloads/jlink
Segger Ozone J-Link Debugger	Software and Documentation pack for Segger Ozone J-Link debugger	https://www.segger.com/downloads/jlink#Ozone
Sejda PDF Desktop	PDF editor	https://www.sejda.com/en/desktop
SeKey	Use Touch ID or Secure Enclave for SSH authentication	https://github.com/sekey/sekey/
SelfControl	Block your own access to distracting websites	https://selfcontrolapp.com/
Sempliva Tiles	Window manager	https://www.sempliva.com/tiles/
Semulov	Access mounted and unmounted volumes from the menubar	https://github.com/kainjow/Semulov
Sena Bluetooth Device Manager	Manager for SENA devices	https://www.sena.com/support/apps/
Sencha Cmd	Productivity and performance optimisation tool for Sencha Ext JS	https://www.sencha.com/products/sencha-cmd/
Send Anywhere	File sharing app	https://send-anywhere.com/
Send to Kindle	Tool for sending personal documents to Kindles from Macs	https://www.amazon.com/gp/sendtokindle/mac
Sengi	Mastodon and Pleroma desktop client	https://github.com/NicolasConstant/sengi
Sensei	Monitors the computer system and optimises its performance	https://cindori.com/sensei
Sensible Side Buttons	Utilise mouse side navigation buttons	https://sensible-side-buttons.archagon.net/
SensibleSideButtons	Utilise mouse side navigation buttons	https://sensible-side-buttons.archagon.net/
Sentinel	Configure Gatekeeper, unquarantine and self-sign apps	https://itsalin.com/appInfo/?id=sentinel
Sentry CLI	Command-line utility to interact with Sentry	https://docs.sentry.io/cli/
Sequel Ace	MySQL/MariaDB database management	https://github.com/Sequel-Ace/Sequel-Ace
Sequential	Displays folders and archives of images and PDF files	https://sequentialx.com/
Serene	Productivity app for focus and planning	https://sereneapp.com/
Serial	Connect to almost anything with a serial port	https://www.decisivetactics.com/products/serial/
Serial Studio	Data visualisation software for embedded devices and projects	https://serial-studio.github.io/
Serial Studio Pro	Data visualisation software for embedded devices and projects	https://serial-studio.github.io/
servatrice	Virtual tabletop for multiplayer card games	https://cockatrice.github.io/
Server Box	App for monitoring server status with SSH terminal, SFTP, Container management	https://github.com/lollipopkit/flutter_server_box
ServerBox	App for monitoring server status with SSH terminal, SFTP, Container management	https://github.com/lollipopkit/flutter_server_box
ServerBuddy	Manage Linux servers	https://serverbuddy.app/
Serviio	Media server	https://serviio.org/
Servo	Parallel browser engine	https://servo.org/
ServPane	Launchd menu bar app	https://github.com/aderyabin/ServPane
Session	Onion routing based messenger	https://getsession.org/
Session Manager Plugin for the AWS CLI	Plugin for AWS CLI to start and end sessions that connect to managed instances	https://docs.aws.amazon.com/systems-manager/latest/userguide/session-manager-working-with-install-plugin.html
SessionRestore	Helps to keep numerous Safari tabs open for reading them later	https://sessionrestore.sweetpproductions.com/
SessionWatcher	Menu bar monitor for AI coding assistant usage and limits	https://www.sessionwatcher.com/
Setapp	Collection of apps available by subscription	https://setapp.com/
SF Symbols	Tool that provides consistent, highly configurable symbols for apps	https://developer.apple.com/sf-symbols/
SFM	Standalone client for sing-box, the universal proxy platform	https://sing-box.sagernet.org/
Shade	AI-powered media storage and asset management platform	https://shade.inc/
Shadow	Online virtualised computer	https://shadow.tech/
Shadow PC	Online virtualised computer	https://shadow.tech/
Shadow PC Beta	Online virtualized computer	https://shadow.tech/
ShadowsocksX	Removed according to regulations	https://github.com/shadowsocks/shadowsocks-iOS/wiki/Shadowsocks-for-OSX-Help
ShadowsocksX-NG	Tunneling proxy	https://github.com/shadowsocks/ShadowsocksX-NG/
ShadowsocksX-NG-R	Next Generation of ShadowsocksX	https://github.com/qinyuhang/ShadowsocksX-NG-R/
ShadowsocksX-NG-R8	Next Generation of ShadowsocksX	https://github.com/qinyuhang/ShadowsocksX-NG-R/
Shapes	Diagramming app	https://shapesapp.com/
Shapr3D	3D CAD software	https://www.shapr3d.com/
ShareFile	Client for the Progress ShareFile storage service	https://www.sharefile.com/
ShareMouse	Share peripherals between computers	https://www.sharemouse.com/
Sharepod	Transfer music from iOS to Macs or PC	https://www.getsharepod.com/
Shattered Pixel Dungeon	Traditional roguelike dungeon crawler with randomised levels, enemies and items	https://shatteredpixel.com/shatteredpd
Shearwater Cloud	Review, edit and share dive log data	https://shearwater.com/
Shell360	Cross-platform SSH & SFTP client	https://github.com/nashaofu/shell360
Sherlock	iOS simulator visual debugger	https://sherlock.inspiredcode.io/
Shiba	Rich markdown live preview app with linter	https://github.com/rhysd/Shiba/
Shiba-darwin-x64/Shiba	Rich markdown live preview app with linter	https://github.com/rhysd/Shiba/
ShichiZip	7-Zip derivative GUI	https://github.com/idawnlight/ShichiZip
ShichiZip ZS	7-Zip derivative GUI based on mcmilk/7-Zip-zstd	https://github.com/idawnlight/ShichiZip
Shield	App to protect against process injection	https://theevilbit.github.io/shield/
Shift	Workstation to streamline your accounts, apps, and workflows	https://shift.com/
Shifty	Menu bar app that provides more control over Night Shift	https://shifty.natethompson.io/
Shimo	VPN client for secure internet access and private browsing	https://www.shimovpn.com/
Shimonote	Document editor	https://shimo.im/
Shiori	Pinboard and Delicious client that allows you to find and add bookmarks	https://aki-null.net/shiori/
Shop Different	3D reconstruction of Apple Retail Stores on their opening days	https://departmentmap.store/timemachine/
Shortcat	App that enables mouse-free UI interaction	https://shortcat.app/
Shortcutor	iOS shortcuts editor	https://shortcutor.com/
Shortwave	Email client	https://www.shortwave.com/
Shotcut	Video editor	https://www.shotcut.org/
Shottr	Screenshot measurement and annotation tool	https://shottr.cc/
ShowMeYourHotKeys	Show applications menu items hotkeys	https://showmeyourhotkeys.moxadventu.com/
ShowyEdge	Visible indicator of the current input source	https://showyedge.pqrs.org/
ShurePlus MOTIV	Additional features and controls for Shure MV7 and MV88+ microphones	https://www.shure.com/en-US/products/software/shure_plus_motiv_desktop
Shutter Encoder	Video, audio and image converter	https://www.shutterencoder.com/
SideKick	AI chat panel	https://www.cloudless.so/ai-sidebar
Sidekick	Browser designed for modern work	https://www.meetsidekick.com/
SideNotes	Note-taking application	https://www.apptorium.com/sidenotes
SideQuest	Virtual reality content platform	https://sidequestvr.com/
SideX	Code editor based on VS Code and Tauri	https://github.com/Sidenai/sidex
SigDigger	Qt-based digital signal analyzer	https://batchdrake.github.io/SigDigger/
Sigil	EPUB ebook editor	https://sigil-ebook.com/
SigmaOS	Web browser	https://sigmaos.com/
Signal	Instant messaging application focusing on security	https://signal.org/
Signal Beta	Instant messaging application focusing on security	https://signal.org/
Signet	Scans and checks bundle signatures	https://eclecticlight.co/taccy-signet-precize-alifix-utiutility-alisma/
signet13/Signet	Scans and checks bundle signatures	https://eclecticlight.co/taccy-signet-precize-alifix-utiutility-alisma/
SilentKnight	Automatically checks computer's security	https://eclecticlight.co/lockrattler-systhist/
Silhouette Studio	Design software for Silhouette cutting machines	https://www.silhouetteamerica.com/silhouette-studio
Silicon	Identify Intel-only apps	https://github.com/DigiDNA/Silicon
Silicon Info	View the architecture of the running application	https://github.com/billycastelli/Silicon-Info
Silicon Labs VCP Driver	CP210x USB to UART Bridge VCP Driver	https://www.silabs.com/products/development-tools/software/usb-to-uart-bridge-vcp-drivers
SiliconMotion InstantView	Driver for SM76x with UI	https://www.siliconmotion.com/
SiliconScope	System monitor for Apple Silicon with ANE, Media Engine and bandwidth tracking	https://siliconscope.calidalab.ai/
SILKYPIX Developer Studio 8 SE	RAW image development software used with Panasonic products	https://www.isl.co.jp/SILKYPIX/english/p/
silnite	Checks EFI firmware and security data file updates	https://eclecticlight.co/lockrattler-systhist/
Silo	3D polygonal modeller and UV mapper	https://nevercenter.com/silo/
Sim Daltonism	Colour blindness simulator for videos and images	https://michelf.ca/projects/mac/sim-daltonism/
Sim Genie	Easier access to Xcode Simulator functionality	https://simgenie.app/
Simon Tatham's Portable Puzzle Collection	Collection of small computer programmes which implement one-player puzzle games	https://www.chiark.greenend.org.uk/~sgtatham/puzzles/
SimPholders	Access utility for iPhone Simulator apps	https://simpholders.com/
simpholders_3_0_12	Access utility for iPhone Simulator apps	https://simpholders.com/
Simple Clock Screensaver	Simple analogue clock screensaver written entirely in Swift	https://github.com/Wandmalfarbe/Simple-Clock-Screensaver
Simple Comic	Comic viewer/reader	https://github.com/MaddTheSane/Simple-Comic
Simple Web Server	Create local web servers	https://simplewebserver.org/
SimpleDEMViewer	Digital Elevation Model viewer	https://jizoh.jp/english.html
SimpleDEMViewer 8.6.1/SimpleDEMViewer	Digital Elevation Model viewer	https://jizoh.jp/english.html
SimpleMind	Cross-platform mind mapping tool	https://simpleapps.eu/
SimpleMind Pro	Cross-platform mind mapping tool	https://simpleapps.eu/
Simplenote	React client for Simplenote	https://github.com/Automattic/simplenote-electron
SimpleTex	Formula snipping and recognition app	https://simpletex.net/
SimpleX	Messenger for SimpleX protocol	https://simplex.chat/
SimpleX Chat	Messenger for SimpleX protocol	https://simplex.chat/
SimPLISTic	Property list utility	https://newosxbook.com/tools/simplistic.html
Simply Fortran	Fortran development environment	https://simplyfortran.com/
SimplySign Desktop	Emulates a physical crypto card/reader for proCertum SmartSign	https://support.certum.eu/en/software/procertum-smartsign/
SimSim	Tool to explore iOS application folders in Terminal or Finder	https://github.com/dsmelov/simsim/
Sina Finance	Stock market data and financial news platform	https://finance.sina.com.cn/desktopapp/download/
Singlebox	Multi-account web browser	https://singlebox.app/en/
SingleCrystal	Crystal diffraction software	https://crystalmaker.com/singlecrystal/index.html
Singularity Viewer	Client for Second Life and OpenSim	https://www.singularityviewer.org/
SingularityAlpha	Client for Second Life and OpenSim	https://www.singularityviewer.org/
sioyek	PDF viewer designed for reading research papers and technical books	https://sioyek.info/
Sioyek	PDF viewer designed for reading research papers and technical books	https://sioyek.info/
Sip	Collect, organise & share colours	https://sipapp.io/
sipgate	Softphone for making telephone calls over the internet	https://www.sipgate.de/app
sipgate softphone	Make telephone calls on the computer	https://www.sipgate.de/softphone-download
Sipgate Softphone	Make telephone calls on the computer	https://www.sipgate.de/softphone-download
SiriMote	Control your computer with your Apple TV Siri Remote	https://eternalstorms.at/sirimote
Sitala	Drum sampler plugin and standalone app	https://decomposer.de/sitala/
SiteSucker Pro	Website downloader tool	https://ricks-apps.com/osx/sitesucker/index.html
sixtyforce	N64 emulator	https://sixtyforce.com/
SiYuan	Local-first personal knowledge management system	https://github.com/siyuan-note/siyuan
SizeUp	Utility to resize and position application windows	https://www.irradiatedsoftware.com/sizeup/
Sizzy	Tool to simulate responsive designs on multiple devices	https://sizzy.co/
SJMCL	Minecraft launcher built with the community	https://mc.sjtu.cn/sjmcl/
sk302/SilentKnight3	Automatically checks computer's security	https://eclecticlight.co/lockrattler-systhist/
Sketch	Digital design and prototyping platform	https://www.sketch.com/
Sketch Beta	Digital design and prototyping platform	https://www.sketch.com/beta
Sketch Toolbox	Plugin manager for Sketch	http://sketchtoolbox.com/
SketchUp	3D modeling software used to create and manipulate 3D models	https://sketchup.trimble.com/en
Skills Manager	Manage, sync, and organise AI agent skills across coding tools	https://github.com/xingkongliang/skills-manager
skills-manager	Manage, sync, and organise AI agent skills across coding tools	https://github.com/xingkongliang/skills-manager
Skim	PDF reader and note-taking application	https://skim-app.sourceforge.io/
Skint	Check status of key security settings and features	https://eclecticlight.co/lockrattler-systhist/
skint109/Skint	Check status of key security settings and features	https://eclecticlight.co/lockrattler-systhist/
skint109/SkintM	Check status of key security settings and features	https://eclecticlight.co/lockrattler-systhist/
Sky	Bluesky Social client	https://github.com/jcsalterego/Sky.app
SkyChart	Draw sky charts	https://www.ap-i.net/skychart/
SkyFonts	Font manager	https://skyfonts.com/
Skype	Video chat, voice call and instant messaging application	https://www.skype.com/
Skype for Business	Microsofts instant messaging enterprise software	https://www.microsoft.com/en-us/download/details.aspx?id=54108
Skype Preview	Video chat, voice call and instant messaging application	https://www.skype.com/
Slab	Knowledge management for organisations	https://slab.com/
Slack	Team communication and collaboration software	https://slack.com/
Slack CLI	CLI to create, run, and deploy Slack apps	https://docs.slack.dev/tools/slack-cli/
Slashy	Email client for Gmail	https://www.slashy.com/
Slate	Window management application	https://github.com/fertigt/slate_arm64
Slate (arm64)	Window management application	https://github.com/fertigt/slate_arm64
sleek	Todo manager based on the todo.txt syntax	https://github.com/ransome1/sleek
Sleep Aid	Monitor computer's sleeping habits	https://ohanaware.com/sleepaid/
Sleipnir	Web browser	https://www.fenrir-inc.com/jp/sleipnir/
Slicer	Medical image processing and visualization system	https://www.slicer.org/
Slidepad	Slide over browser	https://slidepad.app/
SlidePilot	PDF presentation tool	https://slidepilotapp.com/en
Slideshower for macOS	Slideshow application	https://slideshower.com/
SlimHUD	Replacement for the volume, brightness and keyboard backlight HUDs	https://github.com/AlexPerathoner/SlimHUD/
Slippi	Fork of the Dolphin GameCube and Wii emulator with netplay support via Slippi	https://slippi.gg/
Slippi Dolphin	Fork of the Dolphin GameCube and Wii emulator with netplay support via Slippi	https://slippi.gg/
Slite	Team communication and collaboration software	https://slite.com/
Sloth	Displays all open files and sockets in use by all running processes	https://sveinbjorn.org/sloth
Smallstep Agent	Device identity and certificate management daemon	https://smallstep.com/
Smart Converter Pro	Video converter	https://shedworx.com/smart-converter-pro
Smart Converter Pro 3	Video converter	https://shedworx.com/smart-converter-pro
SmartBear SoapUI	API testing tool	https://www.soapui.org/
SmartGit	Git client	https://www.smartgit.dev/
SMARTReporter Free	Drive failure monitoring tool	https://www.corecode.io/smartreporter/
Smartsheet	Spreadsheet-style project management solution	https://www.smartsheet.com/
SmartSVN	Subversion client	https://www.smartsvn.com/
SmartSynchronize	File and directory compare tool	https://www.syntevo.com/smartsynchronize/
smcFanControl	Sets a minimum speed for built-in fans	https://github.com/hholtmann/smcFanControl
Smooth Capture	Screen recorder and video editor	https://www.smoothcapture.app/
SmoothCapture	Screen recorder and video editor	https://www.smoothcapture.app/
SmoothCSV	CSV editor	https://smoothcsv.com/
SmoothScroll	Smooth mouse scrolling utility	https://www.smoothscroll.net/
Smooze Pro	Animates scrolling and adds functionality to scroll-wheel mice	https://smooze.co/
SMPlayer	Media player with built-in codecs	https://www.smplayer.info/
SMS Plus	Sega Master System and Game Gear emulator	https://www.bannister.org/software/sms.htm
SMS Plus v1.3.7/SMS Plus	Sega Master System and Game Gear emulator	https://www.bannister.org/software/sms.htm
Smultron	General-purpose text editor	https://www.peterborgapps.com/smultron/
Snagit	Screen capture software	https://www.techsmith.com/screen-capture.html
Snapline	Screenshot, screen recording and GIF tool	https://snap-line.app/
Snapmaker Luban	3D printing software	https://snapmaker.com/snapmaker-luban
Snapmaker Orca	Slicing software for Snapmaker 3D printers, a fork of OrcaSlicer	https://www.snapmaker.com/snapmaker-orca
SnapMotion	Extract images from videos	https://neededapps.com/snapmotion/
SnapNDrag	Screen capture application	https://www.yellowmug.com/snapndrag/
Snapzy	Native screenshots, recording, annotation, and editing from the menu bar	https://snapzy.app/
Snes9x	Video game console emulator	https://www.snes9x.com/
Snipaste	Snip or pin screenshots	https://www.snipaste.com/
Snippety	Snippet manager & text expander	https://snippety.app/
SnowSQL	Command-line client for connecting to Snowflake	https://snowflake.com/
Social Stream	Consolidate, control, and customise live social messaging streams	https://socialstream.ninja/
Social Stream Ninja	Consolidate, control, and customise live social messaging streams	https://socialstream.ninja/
socialstream	Consolidate, control, and customise live social messaging streams	https://socialstream.ninja/
Sococo	Online workplace client	https://app.sococo.com/a/download
SodaMusic	Music app	https://www.douyin.com/qishui
Soduto	Communicate and share information between devices	https://soduto.com/
Sofa	Remote control for your computer	https://flavio.tordini.org/sofa/
Sofa Server	Remote control for your computer	https://flavio.tordini.org/sofa/
SoftMaker FreeOffice	Office suite	https://www.freeoffice.com/
Softorino YouTube Converter	YouTube downloader and converter	https://softorino.com/youtube-converter/
Softorino YouTube Converter 2	YouTube downloader and converter	https://softorino.com/youtube-converter/
SoftRAID	Powerful and intuitive software RAID utility	https://www.softraid.com/
Softube Central	Installer for installation and license activation of Softube products	https://www.softube.com/
Software for Pololu AVR Programmer v2	Drivers for the Pololu AVR Programmer v2	https://www.pololu.com/docs/0J67/4.3
Sogou Input Method	Input method supporting full and double spelling	https://pinyin.sogou.com/mac/
SokIM	Korean-English Input Method Editor	https://github.com/kiding/SokIM
Sol	Launcher & command palette	https://github.com/ospfranco/sol
Solar2D	Lua-based game engine	https://solar2d.com/
SolveSpace	Parametric 2d/3d CAD	https://solvespace.com/index.pl/
SonarQube CLI	Code quality and security for terminal workflows, scripts, and AI agents	https://www.sonarsource.com/sonarqube/cli/
Sonarr	PVR for Usenet and BitTorrent users	https://sonarr.tv/
Sonarr Beta	PVR for Usenet and BitTorrent users	https://sonarr.tv/
SongKong	Automated audio tag editor	https://www.jthink.net/songkong/
Sonic 3 A.I.R.	Reimplementation of Sonic 3 & Knuckles (requires original game)	https://sonic3air.org/
Sonic 3 AIR	Reimplementation of Sonic 3 & Knuckles (requires original game)	https://sonic3air.org/
Sonic Lineup	Rapid visualisation of multiple audio files for comparison	https://sonicvisualiser.org/sonic-lineup/
Sonic Pi	Code-based music creation and performance tool	https://sonic-pi.net/
Sonic Robo Blast 2	3D open-source Sonic the Hedgehog fangame built using a Doom Legacy port of Doom	https://www.srb2.org/
Sonic Robo Blast 2 Kart	Classic styled kart racer, complete with beautiful courses, and wacky items	https://mb.srb2.org/addons/srb2kart.2435/
Sonic Visualiser	Visualisation, analysis, and annotation of music audio recordings	https://www.sonicvisualiser.org/
SonoBus	High-quality network audio streaming	https://sonobus.net/
Sonos	Control your Sonos system	https://www.sonos.com/
Sonos S1	Controller for Gen 1 Sonos products	https://www.sonos.com/
Sonos S1 Controller	Controller for Gen 1 Sonos products	https://www.sonos.com/
Sonos S2	Control your Sonos system	https://www.sonos.com/
Sony Imaging Edge Desktop	For browse or develop RAW images and tethered shooting on Sony cameras	https://creatorscloud.sony.net/catalog/en-us/ie-desktop/index.html
Sony Imaging Edge Webcam	Use your Sony camera as a high-quality webcam	https://support.d-imaging.sony.co.jp/app/webcam/en/
Soothe 2	Dynamic resonance suppressor	https://oeksound.com/plugins/soothe2/
SoqlXplorer	Desktop client for Salesforce.com platform	https://www.pocketsoap.com/osx/soqlx/
Sorayomi	Manga reader	https://github.com/Suwayomi/Tachidesk-Sorayomi/
Soulseek	File sharing network	https://www.slsknet.org/
SoulseekQt	File sharing network	https://www.slsknet.org/
Soulver	Notepad with a built-in calculator	https://soulver.app/
Soulver 3	Notepad with a built-in calculator	https://soulver.app/
Soulver CLI	Standalone cli for the Soulver calculation engine	https://github.com/soulverteam/Soulver-CLI
Sound Control	Per-app audio controls	https://staticz.com/soundcontrol/
Sound Siphon	App audio capture	https://staticz.com/soundsiphon/
soundanchor	Audio device utility	https://apps.kopiro.me/soundanchor/
SoundAnchor	Audio device utility	https://apps.kopiro.me/soundanchor/
SoundSiphon	App audio capture	https://staticz.com/soundsiphon/
SoundSource	Sound and audio controller	https://rogueamoeba.com/soundsource/
Soundtoys	Audio Effects Plugins	https://www.soundtoys.com/product/soundtoys/
SourceGit	Git GUI client	https://github.com/sourcegit-scm/sourcegit
SourceNote	Text snippet app	https://www.sourcenoteapp.com/
Sourcetree	Graphical client for Git version control	https://www.sourcetreeapp.com/
Sourcetree-Beta	Graphical client for Git version control	https://www.sourcetreeapp.com/
Space Capsule	Spaces management tool	https://spacecapsule.app/
Space Rabbit	Removes animations when switching between Spaces	https://space-rabbit.app/
Space Radar	Disk space and memory visualiser	https://github.com/zz85/space-radar
Space Saver	Delete local Time Machine backups	https://www.mariogt.com/space-saver.html
Spacedrive	Open source cross-platform file explorer	https://github.com/spacedriveapp/spacedrive
SpaceId	Menu bar indicator showing the currently selected space	https://github.com/dshnkao/SpaceId/
SpaceJump	Menu bar utility to name and switch desktop Spaces	https://getspacejump.com/
SpaceLauncher	App launcher/switcher	https://spacelauncherapp.com/
Spaceman	View Spaces / Virtual Desktops in the menu bar	https://www.jaysce.dev/projects/spaceman
SpaceRadar	Disk space and memory visualiser	https://github.com/zz85/space-radar
SpaceSaver	Application designed to help you manage and optimize your workspace	https://spacesaver.congdev.com/
SpaceWalker	Use virtual monitors with Viture XR glasses	https://www.viture.com/academy/spacewalker/desktop
SpamSieve	Spam filtering extension for e-mail clients	https://c-command.com/spamsieve/
Spark	Shortcut manager	https://www.shadowlab.org/softwares/spark.php
Spark AR Studio	Create and share augmented reality experiences using the Facebook family of apps	https://sparkar.facebook.com/ar-studio/
Spark Desktop	Email client	https://sparkmailapp.com/
Sparkle	Software update framework for Cocoa developers	https://sparkle-project.org/
Sparkle Test App	Software update framework for Cocoa developers	https://sparkle-project.org/
SparkleShare	Tool to sync with any Git repository instantly	https://sparkleshare.org/
Sparkplate	Features a test page for resolving human readable domains to crypto addresses	https://github.com/GreenfireInc/Sparkplate.Vue
Sparrow	Bitcoin wallet application	https://sparrowwallet.com/
Sparrow Bitcoin Wallet	Bitcoin wallet application	https://sparrowwallet.com/
Sparsity	Create and find APFS sparse files	https://eclecticlight.co/taccy-signet-precize-alifix-utiutility-alisma/
sparsity14/Sparsity	Create and find APFS sparse files	https://eclecticlight.co/taccy-signet-precize-alifix-utiutility-alisma/
Spatial	Tool for working with MV-HEVC/spatial videos	https://blog.mikeswanson.com/spatial
Spatterlight	Play most kinds of interactive fiction game files	https://ccxvii.net/spatterlight/
Specter	Desktop GUI for Bitcoin Core optimised to work with hardware wallets	https://specter.solutions/
Spectra	OpenSpec document management desktop app	https://spectra.5xcamp.us/
Spectrolite	App for making risograph prints	https://spectrolite.app/
Speechify AI Assistant	AI-powered reading and voice assistant	https://www.speechify.com/
Speechify Voice AI	AI-powered reading and voice assistant	https://www.speechify.com/
Speedify	VPN client	https://speedify.com/
Spike	Develop with Scratch and Python for your LEGO Spike set	https://education.lego.com/
spires	Frontend for inspire-hep and arxiv	https://member.ipmu.jp/yuji.tachikawa/spires/
Spitfire Audio	Download manager for Spitfire audio libraries	https://www.spitfireaudio.com/info/library-manager/
Splashtop Business	Remote access software	https://www.splashtop.com/business
Splashtop Personal	Connect to and control computers from desktop and mobile devices	https://www.splashtop.com/personal
Splashtop Streamer	Connect to and control computers from desktop and mobile devices	https://www.splashtop.com/downloads
SPlayer	Media player	https://splayer.org/
Splice	Browse and preview sounds from Splice’s entire catalog	https://splice.com/
Spline	Design and collaborate in 3D	https://spline.design/
SplitShow	Dual-head presentation of PDF slides	https://github.com/mpflanzer/splitshow
Spokenly	Dictation and transcription app with AI-powered editing	https://spokenly.app/
Spotify	Music streaming service	https://www.spotify.com/
Spotify4BigSur	Implements a Widget for Spotify in the Notification Center	https://github.com/fabiusBile/Spotify4BigSur
SpotifyMain	Implements a Widget for Spotify in the Notification Center	https://github.com/fabiusBile/Spotify4BigSur
SpotMenu	Spotify and iTunes in the menu bar	https://github.com/kmikiy/SpotMenu
Spring Tools for Eclipse	Next generation tooling for Spring Boot	https://spring.io/tools/
SpringToolsForEclipse	Next generation tooling for Spring Boot	https://spring.io/tools/
Sproutcube Shortcat	App that enables mouse-free UI interaction	https://shortcat.app/
spundle	Create, resize and compact sparse bundles	https://eclecticlight.co/dintch/
spundle19/Spundle	Create, resize and compact sparse bundles	https://eclecticlight.co/dintch/
SpyBuster	Anti-spyware tool	https://spybuster.app/
Spyder	Scientific Python IDE	https://www.spyder-ide.org/
SQL Tabs	SQL client	https://github.com/sasha-alias/sqltabs
SQL Workbench/J	DBMS-independent SQL query tool	https://www.sql-workbench.eu/
sqlcl	Oracle SQLcl is the modern command-line interface for the Oracle Database	https://www.oracle.com/database/sqldeveloper/technologies/sqlcl/
sqlectron	SQL client	https://sqlectron.github.io/
Sqlectron	SQL client	https://sqlectron.github.io/
SQLEditor	SQL database design tool	https://www.malcolmhardie.com/sqleditor/
SQLight	Database management tool	https://www.aurvan.com/sqlight/
SQLiteManager	Database management system for sqlite databases	https://www.sqlabs.com/sqlitemanager.php
SQLPro for MSSQL	Microsoft SQL Server database client	https://www.macsqlclient.com/
SQLPro for MySQL	MySQL & MariaDB database client	https://www.mysqlui.com/
SQLPro for Postgres	Lightweight PostgreSQL database client	https://www.macpostgresclient.com/SQLProPostgres
SQLPro for SQLite	Advanced sqlite editor	https://www.sqlitepro.com/
SQLPro Studio	Database management tool	https://www.sqlprostudio.com/
SQLWorkbenchJ	DBMS-independent SQL query tool	https://www.sql-workbench.eu/
Squash	Batch image processor, resiser, and converter	https://www.realmacsoftware.com/squash/
squash	Batch image processor, resiser, and converter	https://www.realmacsoftware.com/squash/
Squeak	Smalltalk programming system	https://squeak.org/
Squeak6.1-23976-64bit-All-in-One	Smalltalk programming system	https://squeak.org/
SquidMan	Manage and install Squid proxy cache	https://squidman.net/squidman/
Squirrel	Rime input method engine	https://rime.im/
SQuirrel SQL	Graphical Java program for viewing the structure of a JDBC compliant database	https://squirrel-sql.sourceforge.io/
SSDReporter	SSD health monitoring tool	https://www.corecode.io/ssdreporter/
SSDReporter Free	SSD health monitoring tool	https://www.corecode.io/ssdreporter/
SSH Config Editor	Tool for managing the OpenSSH ssh client configuration file	https://www.hejki.org/ssheditor/
SSHFS	Network filesystem client to connect to SSH servers	https://github.com/libfuse/sshfs/
SSokit	TCP and UDP debug tool	https://github.com/rangaofei/SSokit-qmake
St. Clair Software Jettison	Automatically ejects external drives	https://stclairsoft.com/Jettison/
Stability Matrix	Package manager and inference UI for Stable Diffusion	https://github.com/LykosAI/StabilityMatrix
stack	Personal online hard drive to store, view and share files	https://www.transip.nl/stack/
STACK	Personal online hard drive to store, view and share files	https://www.transip.nl/stack/
Stand	Reminds you to stand up once an hour	https://getstandapp.com/
Standard Notes	Free, open-source, and completely encrypted notes app	https://standardnotes.com/
starnet++	Removes stars from astrophotography images using ML models	https://www.starnetastro.com/
starnet2	Removes stars from astrophotography images using ML models	https://starnetastro.com/
Starsector	Open-world single-player space combat and trading RPG	https://fractalsoftworks.com/
START	Tencent cloud gaming platform	https://start.qq.com/
Startup Folder	Run anything at startup by simply placing it in a special folder	https://lowtechguys.com/startupfolder
StartupFolder	Run anything at startup by simply placing it in a special folder	https://lowtechguys.com/startupfolder
Startupizer2	Login items handler	http://gentlebytes.com/startupizer/
StarUML	Software modeller	https://staruml.io/
Stash	Network tool based on Clash	https://stash.ws/
Stashpad	Notes app for collaborative work	https://www.stashpad.com/
StationTV Link	DVR and Media Server	https://www.pixela.co.jp/products/tv_capture/stationtv_link/
StationTV® Link	DVR and Media Server	https://www.pixela.co.jp/products/tv_capture/stationtv_link/
Stats	System monitor for the menu bar	https://github.com/exelban/stats
Status	Decentralised wallet and messenger	https://status.app/
Stay	Windows manager	https://cordlessdog.com/stay/
Steam	Video game digital distribution service	https://store.steampowered.com/about/
Steam++	Steam helper tools	https://steampp.net/
SteamCMD	Command-line client for Steam	https://developer.valvesoftware.com/wiki/SteamCMD
SteelSeries GG 108	Settings for SteelSeries peripherals and accessories	https://steelseries.com/gg
SteerMouse	Customise mouse buttons, wheels and cursor speed	https://plentycom.jp/en/steermouse/
Steinberg Activation Manager	Licenses manager for Steinberg Licensing	https://o.steinberg.net/en/support/content_and_accessories/steinberg_activation_manager.html
Steinberg Download Assistant	Tool to download files for Steinberg products	https://o.steinberg.net/en/support/content_and_accessories/steinberg_download_assistant.html
Steinberg Library Manager	Library manager for Steinberg software	https://o.steinberg.net/en/support/downloads/steinberg_library_manager.html
Steinberg MediaBay	Content manager for Steinberg software	https://o.steinberg.net/en/support/downloads/steinberg_mediabay.html
Stella	Multi-platform Atari 2600 Emulator	https://stella-emu.github.io/
Stellarium	Tool to render realistic skies in real time on the screen	https://stellarium.org/
SteuerMac 2020	Tax declaration for the fiscal year 2019	https://www.buhl.de/produkte/wiso-steuer-mac/
SteuerMac 2021	Tax declaration for the fiscal year 2020	https://www.buhl.de/produkte/wiso-steuer-mac/
SteuerMac 2022	Tax declaration for the fiscal year 2021	https://www.buhl.de/download/wiso-steuer-2022/
SteuerMac 2023	Tax declaration for the fiscal year 2022	https://www.buhl.de/download/wiso-steuer-2023/
SteuerMac 2024	Tax declaration for the fiscal year 2023	https://www.buhl.de/download/wiso-steuer-2024/
SteuerMac 2025	Tax declaration for the fiscal year 2024	https://www.buhl.de/download/wiso-steuer-2025/
SteuerMac 2026	Tax declaration for the fiscal year 2025	https://www.buhl.de/download/wiso-steuer-2026/
Stillcolor	Tool to disable temporal dithering on Apple Silicon Macs	https://github.com/aiaf/Stillcolor
Stirling PDF	PDF utility	https://stirling.com/
Stirling-PDF	PDF utility	https://stirling.com/
Stockbit	Indonesian stock trading and analysis platform	https://stockbit.com/desktop
Stoplight Studio	Editor for designing and documenting APIs	https://stoplight.io/studio/
Storyboarder	Visualise a story as fast you can draw stick figures	https://wonderunit.com/storyboarder/
Straight Flush	Stock trading software	https://download.10jqka.com.cn/free/mac
Stratoshark	System calls and log messages analyzer	https://stratoshark.org/
Strawberry	AI-powered web browser	https://strawberrybrowser.com/
Strawberry Wallpaper	Automatically update wallpapers of major galleries	https://aitexiaoy.github.io/Strawberry-Wallpaper/
Streamlabs Desktop	All-in-one live streaming software	https://streamlabs.com/
Streamlink Twitch GUI	Multi platform Twitch.tv browser for Streamlink	https://github.com/streamlink/streamlink-twitch-gui/
StreamMusic	Music client compatible with self-hosted music services	https://music.aqzscn.cn/
Stremio	Open-source media center	https://www.strem.io/
Stremio Service	Companion app for Stremio Web	https://web.strem.io/
StremioService	Companion app for Stremio Web	https://web.strem.io/
Stretchly	Break time reminder app	https://hovancik.net/stretchly/
StringsFile QuickLook plugin	Quick Look plugin to preview .strings files	https://blog.timac.org/?p=933
Stringz	Editor for localizable files	https://github.com/mohakapt/Stringz
StrongVPN	VPN app with support for multiple protocols	https://strongvpn.com/vpn-apps/macos/
Structured Log Viewer	Interactive log viewer for MSBuild structured logs (*.binlog)	https://msbuildlog.com/
StructuredLogViewer	Interactive log viewer for MSBuild structured logs (*.binlog)	https://msbuildlog.com/
Studio	WordPress local development environment	https://developer.wordpress.com/studio/
Studio 3T	IDE, client, and GUI for MongoDB	https://studio3t.com/
Studio 3T Community Edition	IDE, client, and GUI for MongoDB	https://robomongo.org/
Studio Link Standalone	SIP application to create high quality Audio over IP (AoIP) connections	https://studio-link.de/
StudioLinkStandalone	SIP application to create high quality Audio over IP (AoIP) connections	https://studio-link.de/
SubEthaEdit	Plain text and source editor	https://subethaedit.net/
SubGit	Convert SVN repositories to Git	https://subgit.com/
Subler	Mux and tag mp4 files	https://subler.org/
SublerCLI	Command-line version of Subler	https://bitbucket.org/galad87/sublercli/
Sublime Merge	Git client	https://www.sublimemerge.com/
Sublime Text	Text editor for code, markup and prose	https://www.sublimetext.com/
Submariner	Subsonic client	https://submarinerapp.com/
Subsurface	Open source divelog program	https://subsurface-divelog.org/
subsync	Subtitle speech synchroniser	https://subsync.online/
Subtitle Edit	Subtitle editor	https://www.nikse.dk/subtitleedit
Subtitle Studio	Offline AI subtitle generator	https://subtitlestudio.ai/
SUBtools	Helper-application for MP4tools, MKVtools, and AVItools	https://www.emmgunn.com/subtools-home/
subtools1.0.1/SUBtools	Helper-application for MP4tools, MKVtools, and AVItools	https://www.emmgunn.com/subtools-home/
Sunlogin Client	Remote desktop control and monitoring tool	https://sunlogin.oray.com/
SunloginControl	Target component of remote desktop control and monitoring tool	https://sunlogin.oray.com/
Sunsama	Daily planner and calendar	https://www.sunsama.com/desktop
SunVox	Modular synthesiser	https://www.warmplace.ru/soft/sunvox/
sunvox/sunvox/macos/SunVox	Modular synthesiser	https://www.warmplace.ru/soft/sunvox/
supacode	Native terminal coding agents command center	https://supacode.sh/
supasidebar	Arc-like sidebar to save links, files and folders from any browser	https://supasidebar.com/
SupaSidebar	Arc-like sidebar to save links, files and folders from any browser	https://supasidebar.com/
supaterm	Terminal emulator with built-in agent automation	https://supaterm.com/
Supaterm	Terminal emulator with built-in agent automation	https://supaterm.com/
Super Productivity	To-do list and time tracker	https://super-productivity.com/
SuperCollider	Server, language, and IDE for sound synthesis and algorithmic composition	https://supercollider.github.io/
SuperDB	Analytics database that fuses structured and semi-structured data	https://github.com/brimdata/super
SuperDuper!	Backup, recovery and cloning software	https://www.shirt-pocket.com/superduper4.php
Superhuman	Email client	https://superhuman.com/
Superkey	Search and click text anywhere on screen	https://superkey.app/
Superlist	Collaborative to-do list app	https://www.superlist.com/
SuperMjograph	Generate scientific graphs from data	https://www.mjograph.net/
Supernotes	Collaborative note-taking app	https://supernotes.app/
Superset	Terminal for orchestrating agents	https://superset.sh/
SuperSlicer	Convert 3D models into G-code instructions or PNG layers	https://github.com/supermerill/SuperSlicer
SuperTuxKart	Kart racing game	https://supertuxkart.net/Main_Page
superwhisper	Dictation tool including LLM reformatting	https://superwhisper.com/
Superwhisper	Dictation tool including LLM reformatting	https://superwhisper.com/
Support	Menu bar app for user and help desk support	https://github.com/root3nl/SupportApp
Support App	Menu bar app for user and help desk support	https://github.com/root3nl/SupportApp
Support Companion	Provides utility and support tools	https://github.com/macadmins/SupportCompanion
Supremo	Remote desktop software	https://www.supremocontrol.com/
SurfEasy VPN	VPN client	https://www.surfeasy.com/
Surfshark	VPN client for secure internet access and private browsing	https://surfshark.com/
Surge	Network toolbox	https://nssurge.com/
Surge XT	Hybrid synthesiser	https://surge-synthesizer.github.io/
Suspicious Package	Application for inspecting installer packages	https://www.mothersruin.com/software/SuspiciousPackage/
Suunto DM5	Create dive plans and analyze your dives	https://www.suunto.com/Support/software-support/dm5/
SuuntoDM5	Create dive plans and analyze your dives	https://www.suunto.com/Support/software-support/dm5/
SVP 4 Mac	Real time video frame rate converter	https://www.svp-team.com/
Swama	Machine-learning runtime	https://github.com/Trans-N-ai/swama
Sweet Home 3D	Interior design application	https://www.sweethome3d.com/
Swift	XMPP client	https://swift.im/
Swift Publisher	Page layout and desktop publishing application	https://www.swiftpublisher.com/
Swift Publisher 5	Page layout and desktop publishing application	https://www.swiftpublisher.com/
Swift Quit	Enable Windows-like program quitting when all windows are closed	https://github.com/onebadidea/swiftquit
Swift Shift	Window manager	https://www.swiftshift.app/
SwiftBar	Menu bar customization tool	https://swiftbar.app/
SwiftDefaultApps	Replacement for RCDefaultApps, written in Swift	https://github.com/Lord-Kamina/SwiftDefaultApps
swiftDialog	Admin utility that presents custom dialogs or messages from shell scripts	https://swiftdialog.app/
SwiftFormat for Xcode	Xcode Extension for reformatting Swift code	https://github.com/nicklockwood/SwiftFormat
SwiftPlantUMLApp	Generate and view a class diagram for Swift code in Xcode	https://github.com/MarcoEidinger/SwiftPlantUML-Xcode-Extension
SwiftPM Catalog	Browse and search for Swift Package Manager packages	https://zeezide.com/en/products/swiftpmcatalog/
Swifty	Offline password manager tool	https://getswifty.pro/
SwiftyBeaver	Swift logging	https://swiftybeaver.com/
Swimat	Xcode formatter plug-in for Swift code	https://github.com/Jintin/Swimat
Swinsian	Music player	https://swinsian.com/
Swish	Control windows and applications right from your trackpad	https://highlyopinionated.co/swish/
Swisscom myCloud Desktop	Swiss cloud storage desktop app	https://desktop.mycloud.ch/
Switch	Multiple format audio file converter	https://www.nch.com.au/switch/
Switch Audio Converter	Multiple format audio file converter	https://www.nch.com.au/switch/
SwitchHosts	App to switch hosts	https://switchhosts.vercel.app/
SwitchResX	Controls screen display settings	https://www.madrau.com/
Switchy	Switch Magic Keyboard, Trackpad and Mouse between Macs	https://mangobuns.com/switchy/
Sxitch	Tree-based app switcher	https://sxitch.app/
Symantec VIP Access	Two-step authentication software	https://vip.symantec.com/
SymbolicLinker	Service that allows users to make symbolic links in the Finder	https://github.com/nickzman/symboliclinker
Synalyze It! Pro	Hex editing and binary file analysis app	https://www.synalysis.net/
Sync	Store, share and access files from anywhere	https://www.sync.com/
Sync-my-L2P	Synchronises your documents from the L2P and Moodle of RWTH Aachen	https://www.syncmyl2p.de/
Syncalicious	Backup and synchronise preferences across multiple machines	https://github.com/zenangst/Syncalicious
SyncMate	All-in-one sync tool	https://mac.eltima.com/sync-mac.html
Syncovery	File synchronisation and backup software	https://www.syncovery.com/
Syncplay	Synchronises media players	https://syncplay.pl/
SYNCROOM	Online remote concert service	https://syncroom.yamaha.com/
SyncTERM	BBS terminal program	https://syncterm.bbsdev.net/
Syncthing	Real time file synchronisation software	https://syncthing.net/
Synfig Studio	2D animation software	https://synfig.org/
SynfigStudio	2D animation software	https://synfig.org/
Synology Assistant	Tool to manage Synology NAS's across a LAN	https://www.synology.com/
Synology Chat	Messaging service that runs on Synology NAS	https://www.synology.com/en-us/dsm/feature/chat
Synology Cloud Station Backup	Back up files to a centralised Synology NAS	https://www.synology.com/
Synology Drive	Sync and backup service to Synology NAS drives	https://www.synology.com/
Synology Image Assistant	Assistant to generate image previews of formats like HEIC and HEVC	https://www.synology.com/
Synology Note Station Client	Write, view, manage and share content-rich notes	https://www.synology.com/en-us/dsm/packages/NoteStation
Synology Surveillance Station Client	Desktop utility to access Surveillance Station on Synology products	https://www.synology.com/surveillance/
SynologyAssistant	Tool to manage Synology NAS's across a LAN	https://www.synology.com/
Syntax Highlight	Quicklook extension for source files	https://github.com/sbarex/SourceCodeSyntaxHighlight
Synthesia	Learn how to play the piano using falling notes	https://www.synthesiagame.com/
SYS PC Tool	Software for Syride instruments	https://www.syride.com/
Sysdig Inspect	Interface for container troubleshooting and security investigation	https://github.com/draios/sysdig-inspect
Sysdig Inspect-darwin-x64/Sysdig Inspect	Interface for container troubleshooting and security investigation	https://github.com/draios/sysdig-inspect
SysEx Librarian	Communicate with MIDI devices using System Exclusive messages	https://www.snoize.com/SysExLibrarian/
SystHist	Lists full system and security update installation history	https://eclecticlight.co/lockrattler-systhist/
systhist122/SystHist	Lists full system and security update installation history	https://eclecticlight.co/lockrattler-systhist/
T-Engine	Topdown tactical RPG roguelike game and game engine	https://te4.org/
T2M2	Time Machine log viewer & status inspector	https://eclecticlight.co/consolation-t2m2-and-log-utilities/
t2m2203/TheTimeMachineMechanic	Time Machine log viewer & status inspector	https://eclecticlight.co/consolation-t2m2-and-log-utilities/
T3 Code	Minimal GUI for AI code agents	https://t3.codes/
T3 Code (Alpha)	Minimal GUI for AI code agents	https://t3.codes/
T3 Code (Nightly)	Minimal GUI for AI code agents	https://t3.codes/
T3 Code Nightly	Minimal GUI for AI code agents	https://t3.codes/
Tabby	Terminal emulator, SSH and serial client	https://eugeny.github.io/tabby/
Table Tool	CSV file editor	https://github.com/jakob/TableTool
Tableau Desktop	Data visualization software	https://www.tableau.com/products/desktop
Tableau Log Viewer	Tool for working with Tableau logs	https://github.com/tableau/tableau-log-viewer
Tableau Prep	Combine, shape, and clean your data for analysis	https://www.tableau.com/products/prep
Tableau Prep Builder	Combine, shape, and clean your data for analysis	https://www.tableau.com/products/prep
Tableau Public	Explore, create and publicly share data visualisations online	https://public.tableau.com/s/
Tableau Reader	Open and interact with data visualisations built in Tableau Desktop	https://www.tableau.com/products/reader
Tablecruncher	Lightweight CSV editor	https://tablecruncher.com/
TableFlip	Edit plain text tables in place: Markdown, CSV, JSON. LaTeX and HTML export	https://tableflipapp.com/
Tablen	Native SQL client	https://tablen.app/
TablePlus	Native GUI tool for relational databases	https://tableplus.com/
TablePro	Native database client for many database types	https://tablepro.app/
TabTab	Window and tab manager	https://tabtabapp.net/
TabTopus	Web browser tabs URL exporter	https://www.mariogt.com/tabtopus.html
Tabula	Tool for liberating data tables trapped inside PDF files	https://tabula.technology/
tabula/Tabula	Tool for liberating data tables trapped inside PDF files	https://tabula.technology/
tabularis	Lightweight database management tool	https://tabularis.dev/
Tabularis	Lightweight database management tool	https://tabularis.dev/
Tabularis Nightly	Lightweight database management tool	https://tabularis.dev/
Taccy	Troubleshoot signature and privacy problems in applications	https://eclecticlight.co/taccy-signet-precize-alifix-utiutility-alisma/
taccy115/Taccy	Troubleshoot signature and privacy problems in applications	https://eclecticlight.co/taccy-signet-precize-alifix-utiutility-alisma/
Tachidesk Sorayomi	Manga reader	https://github.com/Suwayomi/Tachidesk-Sorayomi/
Tad	Desktop application for viewing and analyzing tabular data	https://www.tadviewer.com/
Tag	Music tag editor	https://www.feisty-dog.com/tag/
Tag Editor	Spreadsheet style tag editor for audio files	https://amvidia.com/tag-editor
TagSpaces	Offline, open-source, document manager with tagging support	https://www.tagspaces.org/
Tahoe Cache Cleaner	General purpose system maintenance tool	https://www.northernsoftworks.com/tahoecachecleaner.html
Tailscale	Mesh VPN based on WireGuard	https://tailscale.com/
TAL-Drum	Drum sampler plug-in	https://tal-software.com/products/tal-drum
Tales of Maj'Eyal	Topdown tactical RPG roguelike game and game engine	https://te4.org/
Talon	Enables you to control your computer with voice, eye tracking, or noises	https://talonvoice.com/
Tana	Knowledge management workspace with AI-powered outlining	https://tana.inc/
Tana Outliner	Knowledge management workspace with AI-powered outlining	https://tana.inc/
Tandem	Virtual office for remote teams	https://tandem.chat/
Tangleguard CLI	Codebase Architecture Context via the CLI for LLMs and Humans	https://tangleguard.com/
taobao	Online Shopping Client	https://pc.taobao.com/
Tap Forms 5	Helps to organise important files in one place	https://www.tapforms.com/
Tap Forms Mac 5	Helps to organise important files in one place	https://www.tapforms.com/
Taphouse	Native GUI for Homebrew package management	https://taphouse.multimodalsolutions.gr/
TapMap	Visualise network connections on an interactive world map	https://tip.no/tapmap/
target/release/macos/Rustcast	Application and utility launcher	https://rustcast.app/
Tartelet	Manage GitHub Actions runners in virtual machines	https://github.com/shapehq/tartelet
Taskade	Task manager for teams	https://www.taskade.com/
Taskbar	Windows-style taskbar as a Dock replacement	https://lawand.io/taskbar/
TaskExplorer	Tool to explore all the running tasks (processes)	https://objective-see.org/products/taskexplorer.html
TaskPaper	App to make lists and help with organisation	https://www.taskpaper.com/
Taskwarrior Pomodoro	Pomodoro timer for Taskwarrior	https://github.com/coddingtonbear/taskwarrior-pomodoro
Taskwarrior-Pomodoro	Pomodoro timer for Taskwarrior	https://github.com/coddingtonbear/taskwarrior-pomodoro
tastytrade	Desktop trading platform	https://tastytrade.com/desktop-platform/
TAU	Profiling and tracing toolkit	https://www.cs.uoregon.edu/research/tau/home.php
TauriTavern	SillyTavern-compatible native client	https://tauritavern.github.io/
TCP Viewer	Packet capture and inspection tool	https://tcpviewer.proxyman.com/
td-agent	Fluentd distribution package	https://www.fluentd.org/
TDR Kotelnikov	Wideband dynamics processor	https://www.tokyodawn.net/tdr-kotelnikov/
TDR Molotok	Dynamics processor/compressor	https://www.tokyodawn.net/tdr-molotok/
TDR Nova	Parallel dynamic equaliser	https://www.tokyodawn.net/tdr-nova/
TDR Prism	Frequency analyzer	https://www.tokyodawn.net/tdr-prism/
TDR VOS SlickEQ	Mixing equaliser	https://www.tokyodawn.net/tdr-vos-slickeq/
TeaCode	Text expanding app for developers	https://www.apptorium.com/teacode
TeamSpeak	Voice communication client	https://www.teamspeak.com/
TeamSpeak 3 Client	Voice communication client	https://www.teamspeak.com/
TeamSpeak Beta	Voice communication client	https://www.teamspeak.com/
TeamSpeak Client	Voice communication client	https://www.teamspeak.com/
TeamViewer	Remote access and connectivity software focused on security	https://www.teamviewer.com/
TeamViewer Host	Remote connectivity solution	https://www.teamviewer.com/
TeamViewer QJ	Standalone TeamViewer app for joining presentations and meetings	https://www.teamviewer.com/
TeamViewer QS	Remote support for computers and mobile devices	https://www.teamviewer.com/
TeamViewer QuickJoin	Standalone TeamViewer app for joining presentations and meetings	https://www.teamviewer.com/
TeamViewer QuickSupport	Remote support for computers and mobile devices	https://www.teamviewer.com/
TeamViewerMeeting	Videoconferencing and communication software	https://www.teamviewer.com/meeting/
TeamViewerQJ	Standalone TeamViewer app for joining presentations and meetings	https://www.teamviewer.com/
TeamViewerQS	Remote support for computers and mobile devices	https://www.teamviewer.com/
TechSmith Capture	Screen capture software	https://www.techsmith.com/jing-tool.html
teensy	Firmware flashing utility	https://pjrc.com/teensy/loader_mac.html
Teensy	Firmware flashing utility	https://pjrc.com/teensy/loader_mac.html
Telari	Markdown reader built for typography	https://telari.app/
Telegram	Messaging app with a focus on speed and security	https://macos.telegram.org/
Telegram A	Web client for Telegram messenger	https://web.telegram.org/a/get
Telegram Desktop	Desktop client for Telegram messenger	https://desktop.telegram.org/
Telegram for macOS	Messaging app with a focus on speed and security	https://macos.telegram.org/
teleport	Virtual KVM	https://github.com/abyssoft/teleport
Teleport	Modern SSH server for teams managing distributed infrastructure	https://goteleport.com/
Teleport Connect	Developer-friendly browser for cloud infrastructure	https://goteleport.com/
Teleport TSH	SSH server for teams managing distributed infrastructure	https://goteleport.com/
Tella	Screen recorder	https://www.tella.tv/
TempBox	Disposable email client	https://tempbox.waseem.works/
Tempbox	Disposable email client	https://tempbox.waseem.works/
Tenable Nessus	Vulnerability scanner	https://www.tenable.com/products/nessus
Tenable Nessus Agent	Agent for Nessus vulnerability scanner	https://www.tenable.com/
Tencent Docs	Online editor for Word, Excel and PPT documents	https://docs.qq.com/
Tencent Lemon	Cleanup and system status tool	https://lemon.qq.com/
Tencent Lemon Cleaner	Cleanup and system status tool	https://lemon.qq.com/
Tencent Meeting	Cloud video conferencing	https://meeting.tencent.com/
Tencent Meeting International Version	Video conferencing software	https://voovmeeting.com/
TencentDocs	Online editor for Word, Excel and PPT documents	https://docs.qq.com/
TencentMeeting	Cloud video conferencing	https://meeting.tencent.com/
TencentVideo	Tencent video streaming and sharing platform	https://v.qq.com/download.html#mac
Tentacle Sync Studio	Automatically synchronise video and audio via timecode	https://tentaclesync.com/
Teradici PCoIP Software Client for macOS	Client for VM agents and remote workstation cards	https://anyware.hp.com/find/product/hp-anyware
Terax	Terminal-first AI-native developer workspace	https://terax.app/
terminal-browser	Terminal-based web browser	https://terminal-browser.com/
Terminology	Semantic lexical reference for Apple Dictionary	https://agiletortoise.com/terminology/mac/
Terminus	Terminal emulator, SSH and serial client	https://eugeny.github.io/tabby/
Termius	SSH client	https://www.termius.com/
Termius Beta	SSH client	https://www.termius.com/beta-program
Termora	Terminal emulator and SSH client	https://github.com/TermoraDev/termora
Testfully	Platform for API testing and monitoring	https://docs.testfully.io/
TETR.IO	Free-to-play Tetris clone	https://tetr.io/about
tev	High dynamic range (HDR) image viewer with accurate color management	https://github.com/Tom94/tev
TeX Live Utility	Graphical user interface for TeX Live Manager	https://github.com/amaxwell/tlutility
Texifier	LaTeX editor	https://www.texifier.com/mac
TeXmacs	Scientific editing platform	https://www.texmacs.org/
texmaker	LaTeX editor	https://www.xm1math.net/texmaker/
Texmaker	LaTeX editor	https://www.xm1math.net/texmaker/
TeXShop	LaTeX and TeX editor and previewer	https://pages.uoregon.edu/koch/texshop/
TeXstudio	LaTeX editor	https://texstudio.org/
texstudio-4.9.7-osx-m1	LaTeX editor	https://texstudio.org/
Textadept	Text editor	https://orbitalquark.github.io/textadept/
TextBar	Add any text to menu bar	http://richsomerfield.com/apps/textbar/
TextBuddy	Convert, filter, sort, and transform text	https://retina.studio/textbuddy/
TextExpander	Inserts pre-made snippets of text anywhere	https://textexpander.com/
TextGrabber2	Menu bar app that detects text from copied images	https://github.com/TextGrabber2-app/TextGrabber2
TextMate	General-purpose text editor	https://macromates.com/
Textream	Teleprompter that highlights scripts in real time as you speak	https://github.com/f/textream
Texts	DM Manager	https://texts.com/
Texts.com	DM Manager	https://texts.com/
TextSniper	Extract text from images and other digital documents	https://textsniper.app/
Textual	Application for interacting with Internet Relay Chat (IRC) chatrooms	https://www.codeux.com/textual/
TexturePacker	Game sprite sheet packer	https://www.codeandweb.com/texturepacker
TeXworks	LaTeX editor	https://www.tug.org/texworks/
TG Pro	Temperature monitoring, fan control and diagnostics	https://www.tunabellysoftware.com/tgpro/
Thangs Sync	Secure, 3D-native revision control in the cloud	https://thangs.com/sync
Thaw	Menu bar manager	https://github.com/thaw-app/Thaw/
The Archive	Note Taking: Nimble, Calm, Plain.txt	https://zettelkasten.de/the-archive/
The Archive Browser	Browse the contents of archives	https://theunarchiver.com/archive-browser
The Battle for Wesnoth	Fantasy-themed turn-based strategy game	https://www.wesnoth.org/
The Clock	Clock and time zone app	https://seense.com/the_clock/
The low-tech guys Cling	Instant fuzzy finder for files including system and hidden files	https://lowtechguys.com/cling
The Pencil Project	GUI prototyping tool	https://pencil.evolus.vn/
The Powder Toy	Physics sandbox game	https://powdertoy.co.uk/
The Time Machine Mechanic	Time Machine log viewer & status inspector	https://eclecticlight.co/consolation-t2m2-and-log-utilities/
The Unarchiver	Unpacks archive files	https://theunarchiver.com/
The Unofficial Homestuck Collection	Offline viewer for the webcomic Homestuck	https://bambosh.github.io/unofficial-homestuck-collection/
TheBrain	Mind mapping and personal knowledge base software	https://www.thebrain.com/
TheBrain 15	Mind mapping and personal knowledge base software	https://www.thebrain.com/
TheCommander	Dual-panel file manager inspired by Total Commander	https://die-gutbrods.de/thecommander/
TheDesk	Mastodon/Misskey Client for PC	https://thedesk.top/
TheiaIDE	IDE framework	https://theia-ide.org/
ThemeEngine	App to edit compiled .car files	https://github.com/jslegendre/ThemeEngine/
There	Tool to display the local times of friends, teammates, cities or any time zone	https://there.pm/
Therm	Fork of iTerm2 that aims to have good defaults and minimal features	https://github.com/trufae/Therm
Things Helper	Helper application for Things	https://culturedcode.com/things/help/things-sandboxing-helper-things3/
ThingsMacSandboxHelper	Helper application for Things	https://culturedcode.com/things/help/things-sandboxing-helper-things3/
thinkDesktop	Desktop client for TD Ameritrade trading platform	https://www.schwab.com/trading/thinkorswim/desktop
ThinLinc	Linux remote desktop server	https://www.cendio.com/thinlinc/what-is-thinlinc/
ThinLinc Client	Linux remote desktop server	https://www.cendio.com/thinlinc/what-is-thinlinc/
Thonny	Python IDE for beginners	https://thonny.org/
Thor	Utility to switch between applications	https://github.com/gbammc/Thor/
Thorium	Chromium-based web browser	https://thorium.rocks/
Thorium Reader	Epub reader	https://www.edrlab.org/software/thorium-reader/
ThoughtDAG	Visual workspace for editable LLM context graphs	https://chenxiachan.github.io/thoughtdag/
Threema	End-to-end encrypted instant messaging application	https://threema.ch/
Threema Beta	End-to-end encrypted instant messaging application	https://threema.ch/download-md
Threema Work	End-to-end encrypted instant messaging application	https://threema.com/products/work
Threema Work Beta	End-to-end encrypted instant messaging application	https://threema.ch/en/download/threema-work/desktop-beta
ThumbHost3mf	Finder thumbnail provider for some .gcode, .bgcode and .3mf files	https://github.com/DavidPhillipOster/ThumbHost3mf/
ThumbsUp	Batch image thumbnail generation utility	https://www.devontechnologies.com/apps/freeware
Thunder	VPN and WiFi proxy	https://www.xunlei.com/
Thunderbird	Customizable email client	https://www.thunderbird.net/en-US/
Thunderbird Beta	Customizable email client	https://www.thunderbird.net/en-US/download/beta/
Thunderbird Daily	Customizable email client	https://www.thunderbird.net/en-US/download/daily/
Thyme	Task timer	https://joaomoreno.github.io/thyme/
TI Connect CE	Connectivity software for the TI-84 Plus family of graphing calculators	https://education.ti.com/en/products/computer-software/ti-connect-ce-sw
TI Connect™ CE	Connectivity software for the TI-84 Plus family of graphing calculators	https://education.ti.com/en/products/computer-software/ti-connect-ce-sw
TI SmartView CE Emulator Software for the TI-84 Plus Family	Software to emulate the TI 84 Plus family of calculators	https://education.ti.com/en/products/computer-software/ti-smartview-ce-for-84
TI UniFlash	Flash tool for microcontrollers	https://www.ti.com/tool/UNIFLASH
TIC-80	Fantasy computer for making, playing and sharing tiny games	https://tic80.com/
tic80	Fantasy computer for making, playing and sharing tiny games	https://tic80.com/
TickerNotch	Tickers, news, weather and social counters beside the notch or in the menu bar	https://bitvibelabs.com/tickernotch/
Tickeys	Utility for producing audio feedback when typing	https://www.yingdev.com/projects/tickeys
TickTick	To-do & task list manager	https://www.ticktick.com/
TIDAL	Music streaming service with high fidelity sound and hi-def video quality	https://support.tidal.com/hc/en-us
TiddlyDesktop-macapplesilicon-v0.0.22/TiddlyDesktop	Browser for TiddlyWiki	https://github.com/Jermolene/TiddlyDesktop
TiddlyWiki	Browser for TiddlyWiki	https://github.com/Jermolene/TiddlyDesktop
Tidelift CLI	Tool to interact with the Tidelift system	https://tidelift.com/cli
TidGi	Personal knowledge-base app	https://github.com/tiddly-gittly/TidGi-Desktop
Tiger Trade	Trading platform	https://www.itiger.com/sg/download/
TigerJython	Jython-based educational programming environment	https://www.tjgroup.ch/
TigerVNC	Multi-platform VNC client and server	https://tigervnc.org/
Tight Studio	Screen recorder and video editor	https://tight.studio/
TikTok Effect House	Create vibrant AR effects for TikTok	https://effecthouse.tiktok.com/
TikZ Editor	WYSIWYG editor for TikZ diagrams in LaTeX	https://tikz.dev/editor/
TikZiT	PGF/TikZ diagram editor	https://tikzit.github.io/
Tiled	Flexible level editor	https://www.mapeditor.org/
Tiles	Window manager	https://www.sempliva.com/tiles/
Time Out	Customizable timing of breaks	https://www.dejal.com/timeout/
Time Sink	Tracks how you spend your time on your computer	https://manytricks.com/timesink/
Time To Leave	Log work hours and get notified when it's time to leave the office	https://github.com/TTLApp/time-to-leave
Time Tracker	Time tracking app	https://github.com/rburgst/time-tracker-mac
TimeCamp	Client application for TimeCamp software - track time and change tasks	https://www.timecamp.com/
Timelane	Profiler for asynchronous code	https://github.com/icanzilb/Timelane
TimeLapze	Record screen and camera time lapses in a menu bar interface	https://github.com/wkaisertexas/ScreenTimeLapse
TimeMachineEditor	Utility to change the default backup interval of Time Machine	https://tclementdev.com/timemachineeditor/
TimeMachineStatus	Menu bar app to show Time Machine information	https://github.com/lukepistrol/TimeMachineStatus
Timemator	Automatic time-tracking application	https://timemator.com/
Timer	Timer application	https://github.com/michaelvillar/timer-app
TimeScribe	Working time tracker	https://timescribe.app/
TimeTracker	Time tracking app	https://github.com/rburgst/time-tracker-mac
Timeular	Time tracking aided by a physical device	https://early.app/
Timing	Automatic time and productivity tracking app	https://timingapp.com/
Timing 2	Automatic time and productivity tracking app	https://timingapp.com/
Tinderbox	Tool to take, visualise and analyze notes	https://eastgate.com/Tinderbox/
Tinderbox 11	Tool to take, visualise and analyze notes	https://eastgate.com/Tinderbox/
Tinkerwell	Tinker tool for PHP and Laravel developers	https://tinkerwell.app/
Tint	Tailwind CSS colour picker	https://beyondco.de/software/tint
Tiny Image	TinyPNG client	https://github.com/kyleduo/TinyPNG4Mac
Tiny Player	Media player	https://www.catnapgames.com/tiny-player-for-mac/
Tiny Player for Mac	Media player	https://www.catnapgames.com/tiny-player-for-mac/
Tiny Shield	Control and monitor network connections	https://tinyshield.proxyman.com/
tinyMediaManager	Media management tool	https://www.tinymediamanager.org/
TinyPNG4Mac	TinyPNG client	https://github.com/kyleduo/TinyPNG4Mac
Tip	Programmable tooltip that can be used with any app	https://github.com/tanin47/tip
tiptoi Manager	Manage the data on children's Ravensburger tip toi audio pen	https://service.ravensburger.de/tiptoi%25C2%25AE/tiptoi_Manager
TLA+ Toolbox	IDE for TLA+	https://lamport.azurewebsites.net/tla/toolbox.html
tldraw offline	Editor for .tldr files	https://github.com/tldraw/tldraw-offline
tlv	Tool for working with Tableau logs	https://github.com/tableau/tableau-log-viewer
TM Error Logger	Time Machine error reporting program	https://carnationsoftware.com/TM_Error_Log_WebPage.html
TmpDisk	Ram disk management	https://github.com/imothee/tmpdisk
TNEF's Enough	Read and extract files from Microsoft TNEF files	https://www.joshjacob.com/mac-development/tnef.php
TnG Digital Mini Program Studio	IDE for building mini programs	https://miniprogram.tngdigital.com.my/index
To Audio Converter	Audio converter	https://amvidia.com/to-audio-converter
Todoist	To-do list	https://todoist.com/home
todometer	Meter-based to-do list	https://cassidoo.github.io/todometer/
Todour	Todo.txt application Todour	https://nerdur.com/todour-pl/
Tofu	E-reader software	https://amarsagoo.info/tofu/
Token Monitor	Monitor token usage, costs, and limits across AI coding tools	https://javis-ai.com/token-monitor/
Tolaria	Markdown knowledgebase manager	https://tolaria.md/
TomatoBar	Menu bar pomodoro timer	https://github.com/ivoronin/TomatoBar
TONE3000	Amp modeling plug-in for Neural Amp Modeler captures and impulse responses	https://www.tone3000.com/
TonePrint	Alter the character of your TonePrint pedal	https://www.tcelectronic.com/en/toneprints
ToolHive	Desktop application to install, manage, and run MCP servers	https://github.com/stacklok/toolhive-studio
ToolReleases	Utility to notify about the latest Apple tool releases (including Beta releases)	https://github.com/DeveloperMaris/ToolReleases
Toontown Launcher	Fan-made revival of Disney's Toontown Online	https://www.toontownrewritten.com/
Toontown Rewritten	Fan-made revival of Disney's Toontown Online	https://www.toontownrewritten.com/
Topaz Gigapixel	AI image upscaler	https://www.topazlabs.com/topaz-gigapixel
Topaz Gigapixel AI	AI image upscaler	https://docs.topazlabs.com/other-apps/legacy
Topaz Photo	AI image enhancer	https://www.topazlabs.com/topaz-photo
Topaz Photo AI	AI image enhancer	https://docs.topazlabs.com/other-apps/legacy
Topaz Video	Video upscaler and quality enhancer	https://www.topazlabs.com/topaz-video
Topaz Video AI	Video upscaler and quality enhancer	https://docs.topazlabs.com/other-apps/legacy
TOPCAT	Interactive graphical viewer and editor for tabular data	https://www.star.bristol.ac.uk/mbt/topcat/
TopNotch	Utility to hide the notch	https://topnotch.app/
TopTracker	Time tracking and invoice processing	https://tracker.toptal.com/tracker/
Tor Browser	Web browser focusing on security	https://www.torproject.org/
Tor Browser Alpha	Web browser focusing on security	https://www.torproject.org/
TorGuard	VPN client	https://torguard.net/
Torrent File Editor	GUI for editing and creating torrent files	https://torrent-file-editor.github.io/
TortoiseHg	Tools for the Mercurial distributed revision control system	https://tortoisehg.bitbucket.io/
Toshiba ColorMFP Drivers	Drivers for Toshiba ColorMFP devices	https://business.toshiba.com/support
Touch Portal	Macro remote control	https://www.touch-portal.com/
TouchDesigner	Tool for creating dynamic digital art	https://derivative.ca/
TouchOSC	MIDI and OSC Controller Software	https://hexler.net/touchosc
touchosc	MIDI and OSC Controller Software	https://hexler.net/touchosc
TouchOSC Bridge	Modular touch control surface bridge for OSC & MIDI	https://hexler.net/touchosc
TouchOSC Editor	Modular touch control surface editor for OSC & MIDI	https://hexler.net/touchosc-mk1
touchosc-editor-1.8.9-macos/TouchOSC Editor	Modular touch control surface editor for OSC & MIDI	https://hexler.net/touchosc-mk1
TouchPortal	Macro remote control	https://www.touch-portal.com/
TouchSwitcher	Use the Touch Bar to switch apps	https://hazeover.com/touchswitcher.html
TourBox Console	Configuration app for TourBox devices	https://www.tourboxtech.com/
Tower	Git client focusing on power and productivity	https://www.git-tower.com/
TPVirtual-Launcher	Indoor cycling game	https://www.trainingpeaks.com/virtual/
Tracker	Video analysis and modelling tool for physics education	https://opensourcephysics.github.io/tracker-website/
TrackerZapper	Menubar app to remove link tracking parameters automatically	https://rknight.me/apps/tracker-zapper
Trader Workstation	Trading software	https://www.interactivebrokers.com/
TradingView	Charting and social-networking for investment traders	https://www.tradingview.com/desktop/
TradingView Desktop	Charting and social-networking for investment traders	https://www.tradingview.com/desktop/
Trae	Adaptive AI IDE	https://www.trae.ai/
Trae CN	Adaptive AI IDE	https://www.trae.com.cn/
Trailer	Managing Pull Requests and Issues For GitHub & GitHub Enterprise	https://ptsochantaris.github.io/trailer/
TrainerRoad	Cycling training system	https://www.trainerroad.com/
TrainingPeaks Virtual	Indoor cycling game	https://www.trainingpeaks.com/virtual/
Transcribe!	Transcribes recorded music	https://www.seventhstring.com/xscribe/overview.html
TranscribeX	Local AI transcription app	https://www.transcribex.io/
Transfer	Transfer samples, presets, sounds, projects and firmware to Elektron devices	https://elektron.se/support-downloads/transfer
Transmission	Open-source BitTorrent client	https://transmissionbt.com/
Transmit	File transfer application	https://panic.com/transmit/
Transnomino	Batch rename utility	https://www.transnomino.com/
Transocks	Tool to optimise access to various video music resources	https://www.transocks.com/
TreeSheets	Hierarchical spreadsheet and outline application	https://strlen.com/treesheets/
TreeViewer	Phylogenetic tree viewer	https://github.com/arklumpus/TreeViewer
Tresorit	Client for the Tresorit cloud storage service	https://tresorit.com/
TRex	Easy to use text extraction tool	https://github.com/amebalabs/TRex/
TREZOR Bridge	Facilitates communication between the Trezor device and supported browsers	https://wallet.trezor.io/
Trezor Suite	Companion app for the Trezor hardware wallet	https://suite.trezor.io/
TREZOR Suite	Companion app for the Trezor hardware wallet	https://suite.trezor.io/
Tribler	Privacy enhanced BitTorrent client with P2P content discovery	https://github.com/Tribler/tribler
tribler-8.4.3-arm	Privacy enhanced BitTorrent client with P2P content discovery	https://github.com/Tribler/tribler
Trickster	Quickly access recently changed or modified files with a keyboard shortcut	https://www.apparentsoft.com/trickster
TriggerFlo	Focus timer and Kanban board for tracking tasks	https://triggerflo.app/
Trilium Notes	Hierarchical note taking application	https://triliumnext.github.io/Docs/
TriliumNext Notes	Hierarchical note taking application	https://triliumnext.github.io/Docs/
Trim Enabler	Enable trim for SSD performance	https://cindori.org/trimenabler/
Trimmy	Paste-once, run-once clipboard cleaner for terminal snippets	https://github.com/steipete/Trimmy
Triple Cheese	Luscious and cheesy synthesiser	https://u-he.com/products/triplecheese/
TripMode	Control your data usage on slow or expensive networks	https://www.tripmode.ch/
tritium	Integrated drafting environment for legal professionals	https://tritium.legal/
Tritium	Integrated drafting environment for legal professionals	https://tritium.legal/
Trivial	Simple file transfer server supporting many protocols	https://www.decisivetactics.com/products/trivial/
trolCommander	Fork of the muCommander file manager	https://trolsoft.ru/en/soft/trolcommander
Tropy	Research photo management	https://tropy.org/
TrueTree	Command-line tool for pstree-like output	https://themittenmac.com/the-truetree-concept/
TruHu	Display calibration utility	https://truhu.app/
TruHu Mac Desktop	Display calibration utility	https://truhu.app/
Trunk Launcher	Developer experience toolkit used to check, test, merge, and monitor code	https://trunk.io/
Trusted QSL	Sign and upload QSO records to Logbook of The World (LoTW)	https://www.arrl.org/tqsl-download
Tuck	Window manager	https://www.irradiatedsoftware.com/tuck/
Tuist	Create, maintain, and interact with Xcode projects at scale	https://tuist.io/
Tumult Hype	App to create animated and interactive web content	https://tumult.com/hype/
Tuna	Application launcher	https://tunaformac.com/
Tunarr	Create your own live TV channels from media on Plex, Jellyfin, Emby	https://tunarr.com/
tunarr	Create your own live TV channels from media on Plex, Jellyfin, Emby	https://tunarr.com/
TuneIn	Free Internet Radio	https://tunein.com/
TuneTag	ID3 and metadata editor for audio files	https://tunetag.sweetpproductions.com/
Tune•Instructor	Menu bar control for Apple Music	https://www.tune-instructor.de/com/start.html
Tungsten Edge	Window-oriented taskbar that replaces the Dock	https://tungstenedge.app/
TunnelBear	VPN client for secure internet access and private browsing	https://www.tunnelbear.com/
Tunnelblick	Free and open-source OpenVPN client	https://www.tunnelblick.net/
Tuple	Remote pair programming app	https://tuple.app/
Turbo Boost Switcher	Enable and disable the Intel CPU Turbo Boost feature	https://www.rugarciap.com/turbo-boost-switcher-for-os-x/
TurboTax 2024	Tax declaration for the fiscal year 2024	https://turbotax.intuit.com/personal-taxes/cd-download/
TurboVNC	Remote display system	https://www.turbovnc.org/
Turtl	Secure collaborative notebook	https://turtlapp.com/
turtl	Secure collaborative notebook	https://turtlapp.com/
Tuta Mail	Email client	https://tuta.com/
Tuxera NTFS	File system and storage management software	https://ntfsformac.tuxera.com/
TuxGuitar	Multitrack guitar tablature editor and player	https://www.tuxguitar.app/
tuxguitar-2.1.0-macosx-swt-cocoa-x86_64	Multitrack guitar tablature editor and player	https://www.tuxguitar.app/
TV-Browser	Electronic TV guide	https://www.tvbrowser.org/
TVRenamer	Utility to rename TV episodes from TV listings	https://www.tvrenamer.org/
TVRenamer-0.8	Utility to rename TV episodes from TV listings	https://www.tvrenamer.org/
Twake Desktop	File synchronisation for Twake Workplace	https://twake.app/
TWELITE STAGE SDK	Evaluation & Development tools for TWELITE wireless modules	https://mono-wireless.com/jp/tools/stage/
Twilight	Gecko based web browser	https://zen-browser.app/
Twine	Tool for telling interactive, nonlinear stories	https://twinery.org/
Twingate	Zero trust network access platform	https://twingate.com/
Twist	Team communication and collaboration software	https://twist.com/
Twobird	Email client with collaborative notes	https://www.twobird.com/
Twonky Server	DLNA/UPnP media server	https://twonky.com/
tyke	Scratch paper that lives on your menu bar	https://tyke.app/
Tyke	Scratch paper that lives on your menu bar	https://tyke.app/
Tyme	Time tracking app	https://www.tyme-app.com/
Typeface	Font manager application	https://typefaceapp.com/
Typefully	Tool for writing and publishing tweets	https://typefully.com/
TypeIt4Me	Text expander	https://ettoresoftware.store/mac-apps/typeit4me/
Typeless	AI voice dictation that turns speech into polished text	https://typeless.com/
TypeWhisper	Speech-to-text and AI text processing	https://www.typewhisper.com/
Typinator	Tool to automate the insertion of frequently used text and graphics	https://ergonis.com/en/typinator/
Typora	Configurable document editor that supports Markdown	https://typora.io/
U GG	Game analysis and champion picker	https://u.gg/
U.GG	Game analysis and champion picker	https://u.gg/
UA Connect	Software installer and device manager for Universal Audio products	https://www.uaudio.com/pages/download-ua-connect
UA Midi Control	Control-mapping tool for Universal Audio's UAD Console	https://fonoflow.com/products/ua-midi-control
UAD	GUI which uses ADB to debloat non-rooted Android devices	https://github.com/0x192/universal-android-debloater
uBar	Dock replacement and taskbar	https://ubarapp.com/
Ubiquiti UniFi Network Controller	Set up, configure, manage and analyze your UniFi network	https://www.ui.com/
ubports installer	Application to install ubports on mobile devices	https://ubports.com/
ubports-installer	Application to install ubports on mobile devices	https://ubports.com/
UEFITool	UEFI firmware image viewer	https://github.com/LongSoft/UEFITool
ueli	Keystroke launcher	https://ueli.app/
Ueli	Keystroke launcher	https://ueli.app/
Ugene	Free open-source cross-platform bioinformatics software	https://ugene.net/
UGit	Tencent Git GUI Client	https://ugit.qq.com/
UHK Agent	Configuration application for the Ultimate Hacking Keyboard	https://github.com/UltimateHackingKeyboard/agent
UI TARS	GUI Agent for computer control using UI-TARS vision-language model	https://github.com/bytedance/UI-TARS-desktop
UI-TARS Desktop	GUI Agent for computer control using UI-TARS vision-language model	https://github.com/bytedance/UI-TARS-desktop
Ukelele	Unicode keyboard layout editor	https://software.sil.org/ukelele/
Ukrainian Unicode Layout	Combined Ukrainian keyboard layout with typographic symbols	https://denysdovhan.com/ukrainian-typographic-keyboard
Ulaa	Privacy-centric browser with advanced tracking protection	https://ulaa.com/
Ulaa Browser	Privacy-centric browser with advanced tracking protection	https://ulaa.com/
Ulbow	Log browser	https://eclecticlight.co/consolation-t2m2-and-log-utilities/
ulbow111/Ulbow	Log browser	https://eclecticlight.co/consolation-t2m2-and-log-utilities/
UltData	iPhone data recovery software	https://www.tenorshare.com/products/iphone-data-recovery.html
UltiMaker Cura	3D printer and slicing GUI	https://ultimaker.com/software/ultimaker-cura
Ultimate Control	Take control of your computer wirelessly	https://www.negusoft.com/ucontrol/
Ultimate Hacking Keyboard Agent	Configuration application for the Ultimate Hacking Keyboard	https://github.com/UltimateHackingKeyboard/agent
Ultimate Vocal Remover	Removes vocals from audio files	https://github.com/Anjok07/ultimatevocalremovergui/
UltraStar Deluxe	Karaoke game	https://usdx.eu/
UltraStarDeluxe	Karaoke game	https://usdx.eu/
Unblocked	AI-powered developer collaboration platform	https://getunblocked.com/
Unclack	Mutes your keyboard while you type	https://unclack.app/
Unclutter	Desktop storage area for notes, files and pasteboard clips	https://unclutterapp.com/
Uncolored	Rich text (HTML & Markdown) editor that saves documents with themes	https://n457.github.io/Uncolored/
Understand	Code visualization and exploration tool	https://scitools.com/features
unetbootin	Tool to install Linux/BSD distributions to a partition or USB drive	https://unetbootin.github.io/
UNetbootin	Tool to install Linux/BSD distributions to a partition or USB drive	https://unetbootin.github.io/
Unexpectedly	Browse and visualise the reports from crashes	http://s.sudre.free.fr/Software/Unexpectedly/about.html
Ungoogled Chromium	Google Chromium, sans integration with Google	https://ungoogled-software.github.io/
UniClipboard	Cross-device clipboard syncing tool	https://www.uniclipboard.app/
UnicodeChecker	Explore and convert Unicode	https://earthlingsoft.net/UnicodeChecker/
UniConverter	Video editing software	https://videoconverter.wondershare.com/
UniFi	Set up, configure, manage and analyze your UniFi network	https://www.ui.com/
UniFi Identity Endpoint	License free Wi-Fi, VPN, and Access Application for Organizations	https://www.ui.com/identity
UniFi Identity Enterprise	Corporate Wi-Fi, VPN, SSO, and HR Application	https://www.ui.com/identity
Unified Remote	Turn your smartphone into a universal remote control	https://www.unifiedremote.com/
UninstallPKG	PKG software package uninstall tool	https://www.corecode.io/uninstallpkg/
Unipro UGENE	Free open-source cross-platform bioinformatics software	https://ugene.net/
Unison	File synchroniser	https://github.com/bcpierce00/unison/
Unite	Turn websites into apps	https://bzgapps.com/unite
Unite Phone	Video and voice calling application	https://unitephone.nl/
Unity Android Build Support	Android target support for Unity	https://unity.com/products
Unity CLI	Command-line interface for Unity	https://docs.unity.com/en-us/unity-cli
Unity Editor	Platform for 3D content	https://unity.com/
Unity Hub	Management tool for Unity	https://docs.unity.com/en-us/hub
Unity iOS Build Support	iOS target support for Unity	https://unity.com/products
Unity WebGL Build Support	WebGL target support for Unity	https://unity.com/products
Unity Windows (Mono) Build Support	Windows (Mono) target support for Unity	https://unity.com/products
Universal Android Debloater	GUI which uses ADB to debloat non-rooted Android devices	https://github.com/0x192/universal-android-debloater
Universal Control	Fender software control interface	https://www.presonus.com/pages/universal-control
Universal G-code Sender (Platform version)	G-code sender for CNC (compatible with GRBL, TinyG, g2core and Smoothieware)	https://winder.github.io/ugs_website/
Universal Gcode Sender	G-code sender for CNC (compatible with GRBL, TinyG, g2core and Smoothieware)	https://winder.github.io/ugs_website/
Universal Media Server	Media server supporting DLNA, UPnP and HTTP(S)	https://www.universalmediaserver.com/
Unlox	Unlock your computer with your fingerprint	https://unlox.it/get
UnnaturalScrollWheels	Tool to invert scroll direction for physical scroll wheels	https://github.com/ther0n/UnnaturalScrollWheels
unpkg	Unarchiver for .pkg and .mpkg that unpacks all the files in a package	https://www.timdoug.com/unpkg/
Unraid USB Creator	Home of the Next-Gen Unraid USB Creator, a fork of the Raspberry Pi Imager	https://unraid.net/download/
Unshaky	Software fix for double key presses on Apple's butterfly keyboard	https://github.com/aahung/Unshaky
Unsloth	Desktop application for Unsloth Studio	https://unsloth.ai/
Unsloth Desktop	Desktop application for Unsloth Studio	https://unsloth.ai/
Updatest	Utility that shows the latest app updates	https://updatest.app/
UPDF	PDF editor	https://updf.com/
Upscayl	AI image upscaler	https://upscayl.org/
Usage	Tracks application usage	https://www.mediaatelier.com/Usage/
USB Overdrive	USB and Bluetooth device driver	https://www.usboverdrive.com/
USBImager	Very minimal GUI app that can write/read to disk images and USB drives	https://bztsrc.gitlab.io/usbimager/
Usenapp	Newsreader and Usenet client	https://www.usenapp.com/
uSMART Trade	Stock and options trading platform	https://www.usmartglobal.com/
UTCMenuClock	Menu bar clock	https://github.com/netik/UTCMenuClock
UTM	Virtual machines UI using QEMU	https://mac.getutm.app/
uTools	Plug-in productivity tool set	https://www.u-tools.cn/
Utterly	Remove background noise during your calls in any audio or video conferencing app	https://www.utterly.app/
UU Booster	Network accelerator	https://uu.163.com/download/
UU Remote	NetEase UU remote desktop access and control tool	https://uuyc.163.com/
UUBooster	Network accelerator	https://uu.163.com/download/
UVtools	MSLA/DLP, file analysis, calibration, repair, conversion and manipulation	https://github.com/sn4k3/UVtools
V2Ray Desktop	GUI client that supports Shadowsocks(R), V2Ray, and Trojan protocols	https://github.com/Dr-Incognito/V2Ray-Desktop
V2Ray-Desktop	GUI client that supports Shadowsocks(R), V2Ray, and Trojan protocols	https://github.com/Dr-Incognito/V2Ray-Desktop
V2rayU	Collection of tools to build a dedicated basic communication network	https://github.com/yanue/V2rayU
Vagrant	Development environment	https://www.vagrantup.com/
Vagrant VMware Utility	Gives Vagrant VMware plugin access to various VMware functionalities	https://developer.hashicorp.com/vagrant/docs/providers/vmware
Valentina Studio	Visual editors for data	https://valentina-db.com/en/valentina-studio-overview
Valhalla Freq Echo	Frequency shifter plugin	https://valhalladsp.com/shop/delay/valhalla-freq-echo/
Valhalla Space Modulator	Flanger plugin	https://valhalladsp.com/shop/modulation/valhalla-space-modulator/
Valhalla Supermassive	Delay/reverb plugin	https://valhalladsp.com/shop/reverb/valhalla-supermassive/
Valkey Admin	Administration tool for Valkey clusters and standalone instances	https://valkey-admin.valkey.io/
Valkyrie	Game Master for Fantasy Flight board games	https://npbruce.github.io/valkyrie/
Valley	Software to test performance and stability for PC hardware	https://benchmark.unigine.com/valley
Valley Benchmark	Software to test performance and stability for PC hardware	https://benchmark.unigine.com/valley
Vallum	Application firewall	https://www.vallumfirewall.com/
vAmiga	Amiga 500, 1000, 2000 emulator	https://dirkwhoffmann.github.io/vAmiga
Vanilla	Tool to hide menu bar icons	https://matthewpalmer.net/vanilla/
vapor	Visualisation and analysis platform	https://github.com/NCAR/VAPOR
VAPOR	Visualisation and analysis platform	https://github.com/NCAR/VAPOR
VASSAL	Board game engine	https://www.vassalengine.org/
VB-CABLE Virtual Audio Device	Virtual audio cable for routing audio from one application to another	https://vb-audio.com/Cable/index.htm
VBrokers	Trading platform	https://www.vbkr.com/
VCam	Face-tracking virtual avatar app	https://vcamapp.com/en
VCMI	Open-source engine for Heroes of Might & Magic III	https://vcmi.eu/
VCV Rack	Open-source virtual modular synthesiser	https://vcvrack.com/
Ved	External level editor for VVVVVV	https://tolp.nl/ved/
ved	External level editor for VVVVVV	https://tolp.nl/ved/
VeePN	VPN client	https://veepn.com/vpn-apps/vpn-for-mac/
Vellum	Ebook creation software	https://vellum.pub/
VeraCrypt	Disk encryption software focusing on security based on TrueCrypt	https://veracrypt.io/
VeraCrypt Fuse-T	Disk encryption software focusing on security based on TrueCrypt	https://www.veracrypt.fr/
Vernier Graphical Analysis	Instrument data analysis tool	https://www.vernier.com/product/graphical-analysis/
Vernier Spectral Analysis	Spectrometer data analysis tool	https://www.vernier.com/product/spectral-analysis/
VERO	Ad-free, Algorithm-free Social	https://vero.co/
Versatility	Archive and unarchive saved versions to protect and preserve them	https://eclecticlight.co/revisionist-deeptools/
versatility12/Versatility	Archive and unarchive saved versions to protect and preserve them	https://eclecticlight.co/revisionist-deeptools/
Versions	Subversion client	https://versionsapp.com/
Vertcoin Core	Vertcoin client and wallet	https://vertcoin.org/
Vertcoin-Qt	Vertcoin client and wallet	https://vertcoin.org/
vesktop	Custom Discord App	https://github.com/Vencord/Vesktop
Vesktop	Custom Discord App	https://github.com/Vencord/Vesktop
VESTA	Visualisation for electronic and structural analysis	https://jp-minerals.org/vesta/en/
VESTA/VESTA	Visualisation for electronic and structural analysis	https://jp-minerals.org/vesta/en/
Veusz	Scientific plotting application	https://veusz.github.io/
Vezér	Control and synchronisation of MIDI, OSC or DMX	https://imimot.com/vezer/
VIA	Keyboard configurator	https://caniusevia.com/
Viable	Create and run macOS virtual machines on Apple silicon Macs	https://eclecticlight.co/virtualisation-on-apple-silicon/
viable1b12/Viable	Create and run macOS virtual machines on Apple silicon Macs	https://eclecticlight.co/virtualisation-on-apple-silicon/
ViableS	Create and run sandboxed macOS virtual machines on Apple silicon Macs	https://eclecticlight.co/virtualisation-on-apple-silicon/
viables1b12/ViableS	Create and run sandboxed macOS virtual machines on Apple silicon Macs	https://eclecticlight.co/virtualisation-on-apple-silicon/
Vial	Configurator of compatible keyboards in real time	https://get.vial.today/
Vibe Island	Dynamic island AI agent utility	https://vibeisland.app/
Vibe Notch	Dynamic Island-style notifications for Claude Code CLI sessions	https://vibenotch.app/
VibeMeter	Menu bar app to monitor AI spending	https://www.vibemeter.ai/
VibeProxy	Menu bar app for using AI subscriptions with coding tools	https://github.com/automazeio/vibeproxy
Viber	Calling and messaging application focusing on security	https://www.viber.com/
VibeTunnel	Turn any browser into your terminal	https://vibetunnel.sh/
Vicinae	Application launcher and command palette	https://vicinae.com/
VidCutter	Media cutter and joiner	https://github.com/ozmartian/vidcutter
Video DownloadHelper Companion App	Allows video downloads from the Web	https://www.downloadhelper.net/w/CoApp-Installation
VideoDuke	Video downloader	https://www.video-downloader-mac.com/
VideoFusion	Free all-in-one video editor	https://www.capcut.cn/
VideoFusion-macOS	Free all-in-one video editor	https://www.capcut.cn/
ViDL	GUI frontend for youtube-dl	https://omz-software.com/vidl/
ViDL for Mac	GUI frontend for youtube-dl	https://omz-software.com/vidl/
Vieb	Vim Inspired Electron Browser	https://vieb.dev/
Vienna	RSS and Atom reader	https://www.vienna-rss.com/
Vienna Assistant	Manager for Vienna Symphonic Library sound samples	https://www.vsl.co.at/manuals/getting-started/va
Vimcal	Calendar	https://vimcal.com/
ViMediaManager	Manage digital artifacts for your movie, television and anime collections	https://github.com/vidalvanbergen/ViMediaManager
VimR	GUI for the Neovim text editor	https://github.com/qvacua/vimr
Vimy	Double-click to run macOS virtual machines on Apple silicon Macs	https://eclecticlight.co/virtualisation-on-apple-silicon/
vimy07/Vimy	Double-click to run macOS virtual machines on Apple silicon Macs	https://eclecticlight.co/virtualisation-on-apple-silicon/
Vine Server	VNC server	https://github.com/stweil/OSXvnc/
Virtual ][	Apple II Emulator	https://virtualii.com/
Virtual Desktop Streamer	VR Virtual Desktop Streamer	https://www.vrdesktop.net/
VirtualBuddy	Virtualization tool	https://github.com/insidegui/VirtualBuddy
VirtualC64	Cycle-accurate C64 emulator	https://dirkwhoffmann.github.io/VirtualC64/index.html
VirtualDJ	DJ Software	https://virtualdj.com/
VirtualGL	3D without boundaries	https://www.virtualgl.org/
VirtualHere	Use USB devices remotely over a network	https://www.virtualhere.com/usb_client_software
VirtualHereServer	Remotely access your connected USB devices over the network	https://www.virtualhere.com/osx_server_software
VirtualHereServerUniversal	Remotely access your connected USB devices over the network	https://www.virtualhere.com/osx_server_software
VirtualHereUniversal	Use USB devices remotely over a network	https://www.virtualhere.com/usb_client_software
VirtualHostX	Local server environment	https://retina.studio/virtualhostx/
Viscosity	OpenVPN client with AppleScript support	https://www.sparklabs.com/viscosity/
VisIt	Visualisation and data analysis for mesh-based scientific data	https://wci.llnl.gov/simulation/computer-codes/visit
Viso	Image viewer	https://getviso.app/
Visual Boy Advance - M	Game Boy Advance emulator	https://visualboyadvance-m.org/
Visual Paradigm	UML, SysML, BPMN modelling platform	https://www.visual-paradigm.com/
Visual Paradigm Community Edition	UML, SysML, BPMN modelling platform	https://www.visual-paradigm.com/
Visual Studio Code	Open-source code editor	https://code.visualstudio.com/
Visual Studio Code - Insiders	Open-source code editor	https://code.visualstudio.com/insiders/
visualboyadvance-m	Game Boy Advance emulator	https://visualboyadvance-m.org/
VisualDiffer	Visually compare folders and files	https://visualdiffer.com/
VisualVM	All-in-One Java Troubleshooting Tool	https://visualvm.github.io/
Vitals	Tiny process monitor	https://github.com/hmarr/vitals/
VitalSource Bookshelf	Access etextbooks	https://www.vitalsource.com/bookshelf-features
Vitamin-R	Collection of productivity tools and techniques	https://www.publicspace.net/Vitamin-R/
Vitamin-R 4	Collection of productivity tools and techniques	https://www.publicspace.net/Vitamin-R/
Vivaldi	Web browser with built-in email client focusing on customization and control	https://vivaldi.com/
Vivaldi Snapshot	Web browser with built-in email client focusing on customization and control	https://vivaldi.com/
Vivid	Adaptive brightness for displays	https://www.getvivid.app/
Viz	Utility for extracting text from images, videos, QR codes and barcodes	https://itsalin.com/appInfo/?id=viz
VK Calls	Platform for video calls of any purpose	https://calls.vk.com/
VK Messenger	Messenger app	https://vk.me/app
VK Мессенджер	Messenger app	https://vk.me/app
VLC	Multimedia player	https://www.videolan.org/vlc/
VLC media player	Multimedia player	https://www.videolan.org/vlc/
VLC Remote Setup Helper	Set up VLC for VLC Remote	https://hobbyistsoftware.com/VLC
VLC Setup	Set up VLC for VLC Remote	https://hobbyistsoftware.com/VLC
VLC Streamer	Stream videos to mobile devices using VLC	https://hobbyistsoftware.com/vlcstreamer
VLCStreamer	Stream videos to mobile devices using VLC	https://hobbyistsoftware.com/vlcstreamer
vMLX	Run local AI models on Apple Silicon	https://mlx.studio/
vmpk	Virtual MIDI Piano Keyboard	https://vmpk.sourceforge.io/
VMPK	Virtual MIDI Piano Keyboard	https://vmpk.sourceforge.io/
VNote	Note-taking platform	https://docs.vnote.fun/
Vocaster Hub	Interface controller for Focusrite Vocaster One and Two	https://focusrite.com/vocaster
VoceVista Video	Voice spectrum analyzer with resonance and vowel analysis	https://www.sygyt.com/
VoceVista Video Pro	High-resolution voice spectrum and vibrato analyzer	https://www.sygyt.com/
VoiceInk	Voice to text app	https://tryvoiceink.com/
Voicemod	Real-time voice changer and soundboard	https://www.voicemod.net/
Voicenotes	AI-powered app for recording, transcribing and summarising voice notes	https://voicenotes.com/
VOICEPEAK	High quality text-to-speech software with emotional expression	https://www.ah-soft.com/voice/
Void	AI code editor	https://voideditor.com/
Voiden	API development tool	https://voiden.md/
Voiden Beta	API development tool	https://voiden.md/
VoikkoSpellService	Spell-checking service for Finnish	https://verteksi.net/lab/osxspell/
Volanta	Personal flight tracker	https://volanta.app/
Volt	Client for Slack, Discord, Skype, Gmail, Twitter, Facebook, and more	https://volt-app.com/
Volta	GitHub issues and notifications	https://volta.net/
Volume Control	Control the volume of Apple Music and Spotify using keyboard volume keys	https://github.com/alberti42/Volume-Control
VoodooPad	Notes organiser	https://www.voodoopad.com/
VooV Meeting	Video conferencing software	https://voovmeeting.com/
Vorssaint	Menu bar toolkit with keep-awake, system monitor and volume mixer	https://github.com/vorssaint/vorssaint-utils
Vorta	Desktop Backup Client for Borg	https://github.com/borgbase/vorta
VOX	Music player for high resolution (Hi-Res) music through the external sources	https://vox.rocks/mac-music-player
VOX Preferences	VOX Add-on for Apple Remote, EarPods and System Buttons	https://vox.rocks/mac-music-player/control-extension-download
VoxQL	Quick Look generator for MagicaVoxel files	https://github.com/heptal/VoxQL
VPN Tracker 365	VPN client: IPsec, L2TP, OpenVPN, PPTP, SSTP, SonicWALL/AnyConnect/Fortinet SSL	https://vpntracker.com/
VRAM Pro	Control VRAM allocation of unified memory	https://vrampro.com/
VRAMPro	Control VRAM allocation of unified memory	https://vrampro.com/
Vrew	Video editor	https://vrew.voyagerx.com/
VS Code	Open-source code editor	https://code.visualstudio.com/
VS Code Insiders	Open-source code editor	https://code.visualstudio.com/insiders/
VSCodium	Binary releases of VS Code without MS branding/telemetry/licensing	https://github.com/VSCodium/vscodium
VSCodium - Insiders	Code editor	https://vscodium.com/
VSCodium Insiders	Code editor	https://vscodium.com/
VSD Viewer	Preview .VSD, .VDX, .VSDX file formats of Visio drawings	https://nektony.com/free-visio-viewer-mac
VSDX Annotator	Preview, edit and convert Visio drawings	https://nektony.com/products/vsdx-annotator-mac
VSee	Group video calls, screen sharing and instant messaging	https://vsee.com/
vu	Instagram client	https://datastills.com/vu/
VueScan	App that provides drivers for older model scanners that are no longer supported	https://www.hamrick.com/
Vuze	Bit torrent client	https://www.vuze.com/
VV	Neovim client	https://github.com/vv-vim/vv
vym	Generate and manipulate maps which show your thoughts	https://sourceforge.net/projects/vym/
VYM (View Your Mind)	Generate and manipulate maps which show your thoughts	https://sourceforge.net/projects/vym/
VyprVPN	VPN client	https://www.vyprvpn.com/
Vysor	Mirror and control your phone	https://www.vysor.io/
Wacom Tablet	Resources for Wacom tablets	https://www.wacom.com/en-us/support/product-support/drivers
WAIL	Web Archiving Integration Layer: One-Click User Instigated Preservation	https://github.com/machawk1/wail
WailBrew	Manage Homebrew packages with a UI	https://github.com/wickenico/WailBrew
WakaTime	System tray app for automatic time tracking	https://wakatime.com/mac
Wakatime	System tray app for automatic time tracking	https://wakatime.com/mac
Waku	Native desktop app for coding agents	https://waku.sh/
Wallpaper Wizard	Adjustable wallpaper application	https://wallwiz.com/
Wallspace	Live wallpaper app	https://wallspace.app/
WALTR	Media direct transfer tool for Apple devices	https://softorino.com/legacy/waltr
Waltr 2	Media direct transfer tool for Apple devices	https://softorino.com/legacy/waltr
WALTR HEIC Converter	Drag-and-drop HEIC to JPEG image converter	https://softorino.com/heic-converter/
WALTR PRO	Media conversion and direct transfer tool for Apple devices	https://softorino.com/waltr/
WanNianLi	Chinese lunar calendar on the menu bar	https://github.com/zfdang/chinese-lunar-calendar-for-mac/
Warcraft Logs Uploader	Client to upload warcraft logs	https://classic.warcraftlogs.com/
Warp	Rust-based terminal	https://www.warp.dev/terminal
Warp Agent CLI	Agentic development environment for command-line workflows	https://www.warp.dev/agent-cli
Warp Preview	Rust-based terminal	https://www.warp.dev/terminal
WarpPreview	Rust-based terminal	https://www.warp.dev/terminal
Warsaw	Security software for online banking in Brazil	https://www.topazevolution.com/
Warsow	First-person shooter game	https://www.warsow.net/
Warzone 2100	Free and open-source real time strategy game	https://wz2100.net/
Wasabi Wallet	Open-source, non-custodial, privacy focused Bitcoin wallet	https://github.com/zkSNACKs/WalletWasabi/
Watch Face Studio	Graphic authoring tool for creating watch faces for Wear OS	https://developer.samsung.com/WatchFaceStudio
Waterfox	Web browser	https://www.waterfox.net/
Waterfox Classic	Web browser	https://classic.waterfox.net/
Wave	Terminal emulator	https://www.waveterm.dev/
Wave Terminal	Terminal emulator	https://www.waveterm.dev/
Wavebox	Web browser	https://wavebox.io/
WaveForms	Virtual instrument suite for Digilent Test and Measurement devices	https://digilent.com/reference/software/waveforms/waveforms-3/start
Waves Central	Client to install and activate Waves products	https://www.waves.com/
WaveSurfer	Tool for sound visualization and manipulation	https://sourceforge.net/projects/wavesurfer/
WaveTerm	Terminal emulator	https://www.waveterm.dev/
WCH USB serial driver for CH340/CH341/CH342/CH343/CH344/CH9101/CH9102/CH9103/CH9143	USB serial driver	https://www.wch.cn/downloads/CH34XSER_MAC_ZIP.html
WD Security	Lock and unlock Western Digital external drives with hardware encryption	https://support-en.wd.com/app/answers/detailweb/a_id/50696
WeakAuras Companion	Update your auras from Wago.io and creates regular backups of them	https://github.com/WeakAuras/WeakAuras-Companion/
Wealthfolio	Investment portfolio tracker	https://wealthfolio.app/
Weasis	Free DICOM viewer for displaying and analyzing medical images	https://weasis.org/en/index.html
WebCatalog	Tool to run web apps like desktop apps	https://webcatalog.io/
Webex	Video communication and virtual meeting platform	https://www.webex.com/
Webex Meetings	Video communication and virtual meeting platform	https://www.webex.com/
Webkinz	Virtual pet MMO	https://webkinz.com/
Webkinz Classic	Virtual pet MMO	https://webkinz.com/
Webots	Open source desktop application used to simulate robots	https://www.cyberbotics.com/
WebPQuickLook	Quick Look plugin for webp files	https://github.com/emin/WebPQuickLook
Website Audit	Analyze whether websites comply with GDPR according to EDPB guidelines	https://code.europa.eu/edpb/website-auditing-tool
Website Watchman	Monitor a whole website, part of a website or a single page	https://peacockmedia.software/mac/watchman/
website-audit	Analyze whether websites comply with GDPR according to EDPB guidelines	https://code.europa.eu/edpb/website-auditing-tool
WebStorm	JavaScript IDE	https://www.jetbrains.com/webstorm/
WebTorrent	Torrent streaming application	https://webtorrent.io/desktop/
WebTorrent Desktop	Torrent streaming application	https://webtorrent.io/desktop/
Webull	Desktop client for Webull Financial LLC	https://www.webull.com/
Webull Desktop	Desktop client for Webull Financial LLC	https://www.webull.com/
WebViewScreenSaver	Screen saver that displays web pages	https://github.com/liquidx/webviewscreensaver
WeChat	Free messaging and calling application	https://mac.weixin.qq.com/
Wechat DevTools	Wechat DevTools for Official Account and Mini Program development	https://developers.weixin.qq.com/miniprogram/dev/devtools/download.html
WeChat for Mac	Free messaging and calling application	https://mac.weixin.qq.com/
WeChat Work	Messaging and calling application	https://work.weixin.qq.com/
wechatwebdevtools	Wechat DevTools for Official Account and Mini Program development	https://developers.weixin.qq.com/miniprogram/dev/devtools/download.html
WeekToDo	Weekly planner app focused on privacy	https://weektodo.me/
Weiyun	Document backup and online management	https://www.weiyun.com/
Weka	Collection of machine learning algorithms for data mining tasks	https://ml.cms.waikato.ac.nz/weka
weka-3.8.7	Collection of machine learning algorithms for data mining tasks	https://ml.cms.waikato.ac.nz/weka
Welly	BBS client	https://github.com/clyang/welly
WenJin Mincho	可免费商用的大字符集宋体字库	https://github.com/takushun-wu/WenJinMincho
WeType	Text input app from WeChat team for Chinese users	https://z.weixin.qq.com/
WezTerm	GPU-accelerated cross-platform terminal emulator and multiplexer	https://wezterm.org/
WezTerm-macos-20240203-110809-5046fc22/WezTerm	GPU-accelerated cross-platform terminal emulator and multiplexer	https://wezterm.org/
Whale	Web browser	https://whale.naver.com/
Whalebird	Mastodon, Pleroma, and Misskey client	https://whalebird.social/
What's Your Sign?	Shows a files cryptographic signing information	https://objective-see.org/products/whatsyoursign.html
WhatCable	Menu bar app for USB-C cable diagnostics	https://github.com/darrylmorley/whatcable
WhatRoute	Network diagnostic utility	https://www.whatroute.net/
WhatsApp	Native desktop client for WhatsApp	https://www.whatsapp.com/
WhatsApp Beta	Native desktop client for WhatsApp	https://www.whatsapp.com/
WhatSize	File system utility used to view and reclaim disk space	https://www.whatsizemac.com/
WhichSpace	Menu bar utility for viewing and switching Spaces	https://github.com/gechr/WhichSpace
Whimsical	Collaboration and diagramming tool	https://whimsical.com/
Whisky	Wine wrapper built with SwiftUI	https://getwhisky.app/
Whispering	Audio transcription that works with local and cloud models	https://whispering.epicenter.so/
White Rabbit	SVG utility and optimiser	https://kadomaru.app/white-rabbit/
WhoDB	Database management tool with AI-powered features	https://github.com/clidey/whodb
WhyFi	Menu bar Wi-Fi monitor and diagnostics app	https://whyfi.network/
Widelands	Free real-time strategy game like Settlers II	https://www.widelands.org/
WidgetToggler	Tool to toggle the visibility of homescreen widgets	https://github.com/sieren/WidgetToggler
WiFi Explorer	Scan, monitor, and troubleshoot wireless networks	https://www.intuitibits.com/products/wifi-explorer/
WiFi Explorer Pro	Scan, monitor, and troubleshoot wireless networks	https://www.intuitibits.com/products/wifi-explorer/
WiFiman Desktop	Network monitoring and troubleshooting tool	https://wifiman.com/
WiFiSpoof	Change your computer's MAC address	https://wifispoof.com/
Willow Voice	AI-powered voice dictation and writing assistant	https://willowvoice.com/
WinBox	Administration tool for MikroTik RouterOS	https://mikrotik.com/
Winbox-mac	MikroTik Winbox	https://github.com/nrlquaker/winbox-mac/
Winclone	Boot Camp cloning and backup solution	https://twocanoes.com/products/mac/winclone
WindowKeys	Window-tiling keyboard shortcuts	https://www.apptorium.com/windowkeys
Windows 95	Electron Windows 95	https://github.com/felixrieseberg/windows95
Windows App	Connect to Windows	https://aka.ms/WindowsApp
windows95	Electron Windows 95	https://github.com/felixrieseberg/windows95
Windscribe	VPN client for secure internet access and private browsing	https://windscribe.com/
WindTerm	SSH/SFTP/Shell/Telnet/Serial terminal	https://github.com/kingToolbox/WindTerm
Wine Devel	Compatibility layer to run Windows applications	https://wiki.winehq.org/MacOS
Wine Stable	Compatibility layer to run Windows applications	https://wiki.winehq.org/MacOS
Wine Staging	Compatibility layer to run Windows applications	https://wiki.winehq.org/MacOS
WineHQ-devel	Compatibility layer to run Windows applications	https://wiki.winehq.org/MacOS
WineHQ-stable	Compatibility layer to run Windows applications	https://wiki.winehq.org/MacOS
WineHQ-staging	Compatibility layer to run Windows applications	https://wiki.winehq.org/MacOS
Wing Personal	Free Python IDE designed for students and hobbyists	https://wingware.com/
Wings 3D	Advanced subdivision modeller	https://www.wings3d.com/
Wings3D	Advanced subdivision modeller	https://www.wings3d.com/
Wins	Window manager	https://wins.cool/
Wintertime	Utility to freeze apps running in the background to save battery	https://github.com/actuallymentor/wintertime-mac-background-freezer
Winx HD Video Converter	HD video converter	https://www.winxdvd.com/hd-video-converter-for-mac/
WinX HD Video Converter for Mac	HD video converter	https://www.winxdvd.com/hd-video-converter-for-mac/
WinZip	File archiving tool	https://www.winzip.com/mac/en/winzip.html
Wire	Collaboration platform focusing on security	https://wire.com/
Wirecast	Live video streaming production tool	https://www.telestream.net/wirecast/
WireframeSketcher	Tool for creating wireframes, mockups and prototypes	https://wireframesketcher.com/
Wireless Workbench	Desktop app for RF coordination and wireless system management	https://www.shure.com/en-US/products/software/wwb?variant=WWB
Wireshark	Network protocol analyzer	https://www.wireshark.org/
Wireshark-ChmodBPF	Network protocol analyzer	https://www.wireshark.org/
WISO Steuer 2020	Tax declaration for the fiscal year 2019	https://www.buhl.de/produkte/wiso-steuer-mac/
WISO Steuer 2021	Tax declaration for the fiscal year 2020	https://www.buhl.de/produkte/wiso-steuer-mac/
WISO Steuer 2022	Tax declaration for the fiscal year 2021	https://www.buhl.de/download/wiso-steuer-2022/
WISO Steuer 2023	Tax declaration for the fiscal year 2022	https://www.buhl.de/download/wiso-steuer-2023/
WISO Steuer 2024	Tax declaration for the fiscal year 2023	https://www.buhl.de/download/wiso-steuer-2024/
WISO Steuer 2025	Tax declaration for the fiscal year 2024	https://www.buhl.de/download/wiso-steuer-2025/
WISO Steuer 2026	Tax declaration for the fiscal year 2025	https://www.buhl.de/download/wiso-steuer-2026/
Wispr Flow	Voice-to-text dictation with AI-powered auto-editing	https://wisprflow.ai/
Witch	Switch apps, windows, or tabs	https://manytricks.com/witch/
Witsy	BYOK (Bring Your Own Keys) AI assistant	https://witsyai.com/
Wiz CLI	CLI for interacting with the Wiz platform	https://www.wiz.io/
WizNote	Note-taking application	https://www.wiz.cn/
WLJS Notebook	Javascript frontend for Wolfram Engine	https://jerryi.github.io/wljs-docs/
wolai	Cloud notes	https://www.wolai.com/
wolai for mac	Cloud notes	https://www.wolai.com/
Wolfram Engine	Evaluator for the Wolfram Language	https://www.wolfram.com/engine/
Wombat	Cross platform gRPC client	https://github.com/rogchap/wombat
Wonder Unit Storyboarder	Visualise a story as fast you can draw stick figures	https://wonderunit.com/storyboarder/
Wondershare EdrawMax	Diagram software	https://www.edrawsoft.com/
Wondershare Filmora	Video editor	https://filmora.wondershare.com/video-editor-mac/
Wondershare Filmora Mac	Video editor	https://filmora.wondershare.com/video-editor-mac/
Wondershare PDFelement for Mac	Create, edit, convert and sign PDF documents	https://pdf.wondershare.com/
Wondershare UniConverter 17	Video editing software	https://videoconverter.wondershare.com/
Wooshy	Click and more on UI Elements through typing	https://wooshy.app/
Wootility	Configuration software for Wooting keyboards	https://wooting.io/wootility
Wordpress Studio	WordPress local development environment	https://developer.wordpress.com/studio/
WordPress.com	WordPress client	https://apps.wordpress.com/desktop/
WordService	Tool that provides commands for working with selected text	https://www.devontechnologies.com/apps/freeware
Workbench	Seamless, automatic, “dotfile” sync to iCloud	https://github.com/mxcl/Workbench
WorkBuddy	AI agent for everyday office work	https://www.workbuddy.cn/
WorkBuddy AI	AI agent for everyday office work	https://www.workbuddy.ai/
WorkFlowy	Notetaking tool	https://workflowy.com/download/
WorksheetCrafter	Worksheet and lesson material creator	https://worksheetcrafter.com/
Workspace ONE Intelligent Hub	Digital workspace hub	https://www.getwsone.com/
Workspaces	Workspace organising app	https://www.apptorium.com/workspaces
WorldPainter	Interactive map generator for Minecraft	https://www.worldpainter.net/
Wormhole	Browse & Control phone on PC, Screen Fusion for iOS & Android	https://er.run/
WowUp	World of Warcraft addon manager	https://wowup.io/
WowUp-CF	World of Warcraft addon manager	https://wowup.io/
Wox	Launcher tool	https://github.com/Wox-launcher/Wox
WPS Office	All-in-one office suite	https://www.wps.com/office/mac/
wpsoffice	All-in-one office suite	https://www.wps.com/office/mac/
Wrike	Project management app	https://www.wrike.com/apps/mobile-and-desktop/desktop-app/
Wrike for Mac	Project management app	https://www.wrike.com/apps/mobile-and-desktop/desktop-app/
Write	Word processor for handwriting	https://www.styluslabs.com/
WriteMapper	Writing tool that helps produce text documents using mind maps	https://writemapper.com/
Writerside	Technical writing environment	https://www.jetbrains.com/writerside/
Writerside 2024.3 EAP	Technical writing environment	https://www.jetbrains.com/writerside/
Wrkspace	All-in-one dev bootstrapper: one-click startup Docker, scripts, editor, and URLs	https://wrkspace.co/
WSL Manager	Manage native Linux VMs and remote WSL distros	https://wslmanager.com/
WWDC	Allows access to WWDC livestreams, videos and sessions	https://wwdc.io/
wxMacMolPlt	Cross-platform GUI input generator for GAMESS	https://brettbode.github.io/wxmacmolplt
X AIR Edit	Remote control for the Behringer X AIR series mixers	https://www.behringer.com/en/products/0605-AAD
X Lossless Decoder	Lossless audio decoder	https://tmkk.undo.jp/xld/index_e.html
X-AIR-Edit	Remote control for the Behringer X AIR series mixers	https://www.behringer.com/en/products/0605-AAD
X-Moto	2D motocross platform game	https://xmoto.tuxfamily.org/
X-SwiftFormat	Xcode extension to format Swift code	https://github.com/ruiaureliano/X-SwiftFormat
X2Go Client	Remote desktop software	https://wiki.x2go.org/doku.php
x2goclient	Remote desktop software	https://wiki.x2go.org/doku.php
X32 Edit	Remote control for Behringer X32 audio consoles	https://www.behringer.com/en/products/0603-ACE
X32-Edit	Remote control for Behringer X32 audio consoles	https://www.behringer.com/en/products/0603-ACE
xACT	X Audio Compression Toolkit	http://xact.scottcbrown.org/
xACT2.57/xACT	X Audio Compression Toolkit	http://xact.scottcbrown.org/
XAMPP	Apache distribution containing MySQL, PHP, and Perl	https://www.apachefriends.org/index.html
XaoS	Real-time interactive fractal zoomer	https://xaos-project.github.io/
xattred	Extended attribute editor	https://eclecticlight.co/xattred-sandstrip-xattr-tools/
xattred17/xattred	Extended attribute editor	https://eclecticlight.co/xattred-sandstrip-xattr-tools/
xbar	View output from scripts in the menu bar	https://xbarapp.com/
xca	X Certificate and Key management	https://hohnstaedt.de/xca/
XCA	X Certificate and Key management	https://hohnstaedt.de/xca/
XcodeClangFormat	Format code in Xcode with clang-format	https://github.com/mapbox/XcodeClangFormat
XcodePilot	Toolset for Apple developers to increase productivity and efficiency	https://xcodepilot.thriller.fun/docs/
Xcodes	Install and switch between multiple versions of Xcode	https://github.com/XcodesOrg/XcodesApp
XCTU	Configuration Platform for XBee/RF Solutions	https://www.digi.com/products/embedded-systems/digi-xbee-tools/xctu
XDeck	TweetDeck-style X/Twitter client	https://github.com/morishin/XDeck
Xee³	Image viewer and file browser	https://theunarchiver.com/xee
Xemu	Original Xbox Emulator	https://xemu.app/
Xiaomi Cloud	Sync photos, contacts, messages and devices	https://i.mi.com/
ximalaya	Platform for podcasting and audio-sharing	https://www.ximalaya.com/
Xit	GUI for the git version control system	https://github.com/Uncommon/Xit
XIV on Mac	Wine wrapper, setup tool and launcher for FFXIV	https://www.xivmac.com/
XKey	Vietnamese input method engine	https://github.com/xmannv/xkey/
XLD	Lossless audio decoder	https://tmkk.undo.jp/xld/index_e.html
Xliff Editor	Localization file editor	https://xliffedit.com/
XLPlayer	Video player	https://video.xunlei.com/mac.html
XLPlayer for Mac	Video player	https://video.xunlei.com/mac.html
XMenu	Access folders, files or text snippets from the menu bar	https://www.devontechnologies.com/apps/freeware
Xmind	Mind mapping and brainstorming tool	https://www.xmind.net/
XMind	Mind mapping and brainstorming tool	https://www.xmind.net/
XMLmind	Strictly validating near WYSIWYG XML editor	https://www.xmlmind.com/xmleditor/
XMLMind XML Editor	Strictly validating near WYSIWYG XML editor	https://www.xmlmind.com/xmleditor/
Xmplify	XML editor	https://xmplifyapp.com/
Xnapper	Screenshot tool	https://xnapper.com/
XnConvert	Image-converter and resiser tool	https://www.xnview.com/en/xnconvert/
XnSoft XnConvert	Image-converter and resiser tool	https://www.xnview.com/en/xnconvert/
XnViewMP	Photo viewer, image manager, image resiser and more	https://www.xnview.com/en/xnviewmp/
Xonotic	Arena-style first person shooter	https://xonotic.org/
Xournal++	Handwriting notetaking software	https://github.com/xournalpp/xournalpp
XPPen PenTablet	Universal driver for XPPen drawing tablets and pen displays	https://www.xp-pen.com/
Xpra	Screen and application forwarding system	https://github.com/Xpra-org/xpra/
XProCheck	Anti-malware scan logging tool	https://eclecticlight.co/consolation-t2m2-and-log-utilities/
xprocheck17/XProCheck	Anti-malware scan logging tool	https://eclecticlight.co/consolation-t2m2-and-log-utilities/
XQuartz	Open-source version of the X.Org X Window System	https://www.xquartz.org/
XRG	System monitor	https://gaucho.software/Products/XRG/
xScope	Tools for measuring, inspecting & testing on-screen graphics and layouts	https://xscopeapp.com/
XScreenSaver	Screen savers	https://www.jwz.org/xscreensaver/
XSplit VCam	Webcam background tool	https://www.xsplit.com/vcam
xTool Studio	Design and control software for xTool laser machines	https://www.xtool.com/pages/software
Yaak	REST, GraphQL and gRPC client	https://yaak.app/
Yaak Beta	REST, GraphQL and gRPC client	https://yaak.app/
YACReader	Comic reader	https://www.yacreader.com/
YACReaderLibrary	Comic reader	https://www.yacreader.com/
Yakit	Cybersecurity platform	https://github.com/yaklang/yakit
Yam Display	Yet another monitor	https://www.yamdisplay.com/
Yandex	Web browser	https://browser.yandex.ru/
Yandex Cloud CLI	CLI for Yandex Cloud	https://cloud.yandex.com/docs/cli/
Yandex Music	Tune in to Yandex Music and get personal recommendations	https://music.yandex.ru/
Yandex Music Unofficial	Unofficial app for Yandex Music	https://yandex-music.juvs.dev/
Yandex Telemost	Yandex video calls and meetings platform	https://telemost.yandex.com/
Yandex.Browser	Web browser	https://browser.yandex.ru/
Yandex.Disk	Cloud storage	https://disk.yandex.ru/
Yandex.Disk.2	Cloud storage	https://disk.yandex.ru/
Yandex.Telemost	Yandex video calls and meetings platform	https://telemost.yandex.com/
Yate	Media file tag editor	https://2manyrobots.com/yate/
Yattee	Alternative and privacy-friendly YouTube frontend	https://github.com/yattee/yattee
Yealink Meeting	Video communication and virtual meeting platform	https://www.ylyun.com/portal/pc/Download
yEd	Create diagrams manually, or import external data for analysis	https://www.yworks.com/products/yed
Yellow Dot	Hides privacy indicators	https://lowtechguys.com/yellowdot
YellowDot	Hides privacy indicators	https://lowtechguys.com/yellowdot
Yep	Document manager	https://www.ironicsoftware.com/yep/
YES24_eBook	Crema Ebook reader for Yes24	https://www.yes24.com/Main/default.aspx
YES24eBook	Crema Ebook reader for Yes24	https://www.yes24.com/Main/default.aspx
YesPlayMusic	Third-party NetEase cloud player	https://github.com/qier222/YesPlayMusic
Yggdrasil	End-to-end encrypted IPv6 networking to connect worlds	https://github.com/yggdrasil-network/yggdrasil-go
Yingfu Online	Education app for teens	https://online.yingfu.com.cn/pc-official-website/index.html
Yippy	Open source clipboard manager	https://github.com/mattDavo/Yippy
Yoink	Drag and drop utility	https://eternalstorms.at/yoink/mac/
Yojam	Open links in selected browser, profiles, or apps	https://yoj.am/
Yojimbo	Your effortless, reliable information organiser	https://www.barebones.com/products/yojimbo/
YoudaoDict	Youdao Dictionary	https://cidian.youdao.com/index-mac.html
youdaonote	Multi-platform note application	https://note.youdao.com/
Youku	Chinese video streaming and sharing platform	https://youku.com/product/index
Youlean Loudness Meter	Loudness meter	https://youlean.co/youlean-loudness-meter/
Yousician	Musical instrument learning tool	https://yousician.com/
Yousician Launcher	Musical instrument learning tool	https://yousician.com/
Youtube Downloader	Simple menu bar app to download YouTube movies	https://github.com/DenBeke/YouTube-Downloader-for-macOS
YouTube Downloader	Simple menu bar app to download YouTube movies	https://github.com/DenBeke/YouTube-Downloader-for-macOS
YouTube Music	App wrapper for music.youtube.com	https://github.com/steve228uk/YouTube-Music
YouTube Music Desktop App	YouTube music client	https://ytmdesktop.app/
YouTube to MP3	Downloads music from playlists or channels	https://www.mediahuman.net/youtube-to-mp3/
YouType	Input method helper	https://github.com/freefelt/YouType
YT Music	App wrapper for music.youtube.com	https://github.com/steve228uk/YouTube-Music
Yuanbao	Tencent AI Assistant with Hunyuan and DeepSeek LLMs	https://yuanbao.tencent.com/
Yubico Authenticator	Full-featured companion app to the YubiKey	https://developers.yubico.com/yubioath-flutter/
YubiHSM 2 SDK	Libraries and utilities to interact with a YubiHSM 2 natively and via PKCS#11	https://developers.yubico.com/YubiHSM2/
yubiswitch	Status bar application to enable/disable Yubikey Nano	https://github.com/pallotron/yubiswitch
Yubiswitch	Status bar application to enable/disable Yubikey Nano	https://github.com/pallotron/yubiswitch
Yuque	Cloud knowledge base	https://www.yuque.com/
yWorks yEd	Create diagrams manually, or import external data for analysis	https://www.yworks.com/products/yed
YYBMacApp	Tencent application store	https://sj.qq.com/download/macbrand
Zalo	Messaging and calling application	https://zalo.me/
Zandronum	Multiplayer oriented port for Doom and Doom II	https://zandronum.com/
ZAP	Free and open source web app scanner	https://www.zaproxy.org/
Zappy	Screen capture tool for remote teams	https://zapier.com/zappy
ZCode	AI-assisted development environment	https://zcode.z.ai/en/
Zed	Multiplayer code editor	https://zed.dev/
Zed Attack Proxy	Free and open source web app scanner	https://www.zaproxy.org/
Zed Preview	Multiplayer code editor	https://zed.dev/
Zedis	Redis GUI built with Rust and GPUI	https://github.com/vicanso/zedis
Zeitgeist	Keep an eye on your Vercel deployments	https://zeitgeist.daneden.me/
Zen	Gecko based web browser	https://zen-browser.app/
Zen Browser	Gecko based web browser	https://zen-browser.app/
Zen Twilight	Gecko based web browser	https://zen-browser.app/
Zenbeats	Music creation app	https://www.roland.com/us/products/zenbeats/
Zenmap	Multi-platform graphical interface for official Nmap Security Scanner	https://nmap.org/zenmap/
Zentty	Terminal for agent-driven development	https://zentty.org/
Zeplin	Share, organise and collaborate on designs	https://zeplin.io/
ZeroBrane Studio	Lua IDE	https://studio.zerobrane.com/
ZeroBraneStudio	Lua IDE	https://studio.zerobrane.com/
ZeroTier One	Mesh VPN client	https://www.zerotier.com/
ZEsarUX	ZX machines emulator	https://github.com/chernandezba/zesarux
Zettelkasten	Note box according to Luhmann	http://zettelkasten.danielluedecke.de/
Zettlr	Open-source markdown editor	https://www.zettlr.com/
Zight	Visual communication platform	https://zight.com/
Zipic	Image compression tool	https://zipic.app/
znote	Notes-taking app	https://znote.io/
Znote	Notes-taking app	https://znote.io/
Zo	Friendly personal server	https://www.zo.computer/
ZOC	Professional SSH client and terminal emulator	https://www.emtec.com/zoc/
zoc9	Professional SSH client and terminal emulator	https://www.emtec.com/zoc/
Zoho Cliq	Team communication and collaboration platform	https://www.zoho.com/cliq/desktop/osx.html
Zoho Mail	Email client	https://www.zoho.com/mail/desktop/
Zoho Mail - Desktop	Email client	https://www.zoho.com/mail/desktop/
Zoho WorkDrive	Client for the Zoho cloud storage service	https://www.zoho.com/workdrive/desktop-sync.html
Zoo Design Studio	Professional CAD platform enhanced with ML through Text-to-CAD	https://zoo.dev/design-studio
Zoom	Video communication and virtual meeting platform	https://www.zoom.us/
Zoom for IT Admins	Video communication and virtual meeting platform	https://www.zoom.us/
ZOOM M3 Edit & Play	Software for ZOOM M3 MicTrak	https://zoomcorp.com/en/us/software-product-page/software-sub-cat/m3-edit-and-play/
Zotero	Collect, organise, cite, and share research sources	https://www.zotero.org/
Zotero Beta	Collect, organize, cite, and share research sources	https://www.zotero.org/
zprint	Library to reformat Clojure and Clojurescript source code and s-expressions	https://github.com/kkinnear/zprint
zspace	NAS Client	https://www.zspace.cn/
Zui	Graphical user interface for exploring data in Zed lakes	https://zui.brimdata.io/docs
Zulip	Desktop client for the Zulip team chat platform	https://zulip.com/
ZuluFX	Azul ZuluFX Java Standard Edition Development Kit	https://www.azul.com/downloads/
Zush	AI-powered file renamer and organiser	https://zushapp.com/
Zwift	Indoor cycling game	https://www.zwift.com/
ZXPInstaller	Adobe extensions installer	https://zxpinstaller.com/
ZY Player	Video resource player	https://github.com/Hunlongyu/ZY-Player
Übersicht	Run commands and display their output on the desktop	https://tracesof.net/uebersicht/
Толк	Video conferencing service	https://kontur.ru/talk
Яндекс Музыка	Tune in to Yandex Music and get personal recommendations	https://music.yandex.ru/
밀리의서재	Korean e-book store	https://www.millie.co.kr/
东方财富	Stock trading platform	https://emdesk.eastmoney.com/pc_activity/AHome/Index
中国移动云盘	China Mobile Cloud Drive	https://yun.139.com/
亿图脑图MindMaster	Mind mapping software	https://www.edrawsoft.cn/mindmaster/
企业微信	Messaging and calling application	https://work.weixin.qq.com/
优酷	Chinese video streaming and sharing platform	https://youku.com/product/index
像素蛋糕	AI photo editing software for commercial photography	https://www.pixcakeai.com/
元宝	Tencent AI Assistant with Hunyuan and DeepSeek LLMs	https://yuanbao.tencent.com/
剪映专业版	Free all-in-one video editor	https://www.capcut.cn/
千牛	Merchant workbench for Taobao and Tmall sellers	https://work.taobao.com/
千问	AI assistant and chatbot powered by Alibaba's Qwen model	https://www.qianwen.com/qianwen
印象笔记	Note taking app	https://www.yinxiang.com/
同花顺	Stock trading software	https://download.10jqka.com.cn/free/mac
向日葵个人版	Remote desktop control and monitoring tool	https://sunlogin.oray.com/
向日葵控制端	Target component of remote desktop control and monitoring tool	https://sunlogin.oray.com/
哔哩哔哩	Official bilibili video streaming and sharing platform	https://app.bilibili.com/
哔哩哔哩官方客户端	Official bilibili video streaming and sharing platform	https://app.bilibili.com/
喜马拉雅	Platform for podcasting and audio-sharing	https://www.ximalaya.com/
天翼云盘	Public cloud storage service	https://cloud.189.cn/web/static/download-client/index.html
夸克网盘	Cloud storage and file management platform	https://pan.quark.cn/
富途牛牛	Trading application	https://www.futunn.com/
小程序开发者工具	IDE for the development of Alipay applets	https://opendocs.alipay.com/mini/ide
小米云服务	Sync photos, contacts, messages and devices	https://i.mi.com/
小米互联服务	Cross-device interconnection service for the Xiaomi ecosystem	https://hyperos.mi.com/continuity
幕布	Outline note taking and management app	https://mubu.com/
微信 Mac 版	Free messaging and calling application	https://mac.weixin.qq.com/
微信开发者工具	Wechat DevTools for Official Account and Mini Program development	https://developers.weixin.qq.com/miniprogram/dev/devtools/download.html
微信输入法	Text input app from WeChat team for Chinese users	https://z.weixin.qq.com/
德语助手	Chinese-German dictionary	https://www.eudic.net/v4/de/app/dehelper
必剪	Professional video editing software by Bilibili	https://bcut.bilibili.cn/
快应用开发工具	Quickapp Development Tool	https://www.quickapp.cn/
懒猫微服	Client for LazyCat hardware	https://lazycat.cloud/
抖音	Social software for creating music short videos	https://www.douyin.com/
抖音聊天	Chat client for Douyin	https://www.douyin.com/downloadpage/chat
搜狗输入法	Input method supporting full and double spelling	https://pinyin.sogou.com/mac/
摩客	Create mockups and wireframes	https://www.mockplus.com/
支付宝开放平台密钥工具	Key generation tool	https://opendocs.alipay.com/common/02kipk
新浪财经	Stock market data and financial news platform	https://finance.sina.com.cn/desktopapp/download/
新浪财经APP	Stock market data and financial news platform	https://finance.sina.com.cn/desktopapp/download/
智谱清言	Desktop client for the ChatGLM AI chatbot	https://chatglm.cn/
有道云笔记	Multi-platform note application	https://note.youdao.com/
极空间	NAS Client	https://www.zspace.cn/
欧路词典	English dictionary	https://www.eudic.net/v4/en/app/eudic
汽水音乐	Music app	https://www.douyin.com/qishui
法语助手	French-Chinese dictionary and learning tool	https://www.eudic.net/v4/fr/app/frhelper
洛雪音乐助手桌面版	Music app base on Electron & Vue	https://github.com/lyswhut/lx-music-desktop/
洞窟物語	Action-adventure game reminiscent of classic 8- and 16-bit games	https://www.cavestory.org/
淘宝桌面版	Online Shopping Client	https://pc.taobao.com/
清歌输入法	Wubi input method	https://qingg.im/mac/
爱传送	Transfer files over local network	https://mfiles.maokebing.com/
版富途牛牛 Mac 桌面经典版	Futubull trading application	https://www.futunn.com/
百度网盘	Cloud storage service	https://pan.baidu.com/
石墨文档	Document editor	https://shimo.im/
穿梭Transocks	Tool to optimise access to various video music resources	https://www.transocks.com/
网易UU远程	NetEase UU remote desktop access and control tool	https://uuyc.163.com/
网易云音乐	Music streaming platform	https://music.163.com/
网易有道翻译	Youdao Dictionary	https://cidian.youdao.com/index-mac.html
网易有道词典	Youdao Dictionary	https://cidian.youdao.com/index-mac.html
网易邮箱大师	Email client	https://dashi.163.com/
美图秀秀	Photo editing and beautification software	https://pc.meitu.com/
老虎证券	Trading platform	https://www.itiger.com/sg/download/
腾讯云游戏	Tencent cloud gaming platform	https://start.qq.com/
腾讯会议	Cloud video conferencing	https://meeting.tencent.com/
腾讯应用宝	Tencent application store	https://sj.qq.com/download/macbrand
腾讯文档	Online editor for Word, Excel and PPT documents	https://docs.qq.com/
腾讯新闻	Tencent News client	https://news.qq.com/
腾讯视频	Tencent video streaming and sharing platform	https://v.qq.com/download.html#mac
芒果TV	Mango TV video app	https://www.mgtv.com/app/
英孚乐学	Education app for teens	https://online.yingfu.com.cn/pc-official-website/index.html
语雀	Cloud knowledge base	https://www.yuque.com/
豆包输入法	Chinese input method with voice input and intelligent suggestions	https://shurufa.doubao.com/pc
迅雷	VPN and WiFi proxy	https://www.xunlei.com/
迅雷影音 for Mac	Video player	https://video.xunlei.com/mac.html
金山文档	Online collaborate editor for Word, Excel and PPT documents	https://www.kdocs.cn/
钉钉	Teamwork app by Alibaba Group	https://www.dingtalk.com/
钨极	Window-oriented taskbar that replaces the Dock	https://tungstenedge.app/
阿里云盘	Intelligent cloud storage platform	https://www.aliyundrive.com/
阿里旺旺	Shopping communication tool for Taobao and Tmall users	https://pages.tmall.com/wow/qnww/act/index
雷神加速器	Game network accelerator	https://www.leigod.com/
구름 입력기	Libhangul-based keyboard input	https://gureum.io/
속 입력기	Korean-English Input Method Editor	https://github.com/kiding/SokIM
APPDB

cat > "$DESCAWK" <<'AWK'
function add(k,v,u){ n++; K[n]=k; V[n]=v; if(u!="") U[n]=u }
BEGIN{
  FS="\t"; n=0;
  # Exact matches (generic / short names, mostly Apple built-ins)
  e["Pages"]="Apple word processor for documents.";
  e["Numbers"]="Apple spreadsheet app.";
  e["Keynote"]="Apple presentation app.";
  e["Photos"]="Organizes and edits your photo and video library.";
  e["Music"]="Apple Music player and library.";
  e["TV"]="Apple TV app for movies and shows.";
  e["Podcasts"]="Subscribe to and play podcasts.";
  e["News"]="Apple News reader.";
  e["Notes"]="Quick notes and checklists.";
  e["Reminders"]="To-do lists and reminders.";
  e["Calendar"]="Calendar and events.";
  e["Contacts"]="Your address book.";
  e["Maps"]="Maps and directions.";
  e["Mail"]="Apple email app.";
  e["Messages"]="iMessage and text messages.";
  e["FaceTime"]="Video and audio calls.";
  e["Freeform"]="Freeform whiteboard for brainstorming.";
  e["Preview"]="Views and marks up PDFs and images.";
  e["Safari"]="Apple web browser.";
  e["Stocks"]="Track stock quotes.";
  e["Home"]="Controls HomeKit smart-home accessories.";
  e["Books"]="Read and organize e-books and PDFs.";
  e["Weather"]="Weather forecasts.";
  e["Calculator"]="Basic and scientific calculator.";
  e["Clock"]="World clock, alarms and timers.";
  e["Voice Memos"]="Record voice memos.";
  e["Shortcuts"]="Build and run automation shortcuts.";
  e["Dictionary"]="Dictionary and thesaurus.";
  e["Stickies"]="Sticky notes on your desktop.";
  e["TextEdit"]="Simple text and rich-text editor.";
  e["Terminal"]="Command-line access to macOS.";
  e["Console"]="Views system logs.";
  e["Automator"]="Builds simple automation workflows.";
  e["QuickTime Player"]="Plays and records video and audio.";
  e["Photo Booth"]="Take webcam photos and videos.";
  e["Image Capture"]="Import photos from cameras and scanners.";
  e["Font Book"]="Install and manage fonts.";
  e["Disk Utility"]="Manage, format and repair disks.";
  e["Activity Monitor"]="Shows running processes and resource use.";
  e["System Settings"]="macOS settings.";
  e["System Preferences"]="macOS settings.";
  e["Finder"]="The macOS file manager.";
  e["App Store"]="Install and update Mac apps.";
  e["Screenshot"]="Capture screenshots and screen recordings.";
  e["Migration Assistant"]="Transfer data from another Mac or PC.";
  e["Grapher"]="Plot 2D and 3D graphs.";
  e["Gemini 2"]="Finds and removes duplicate and similar files (MacPaw).";
  e["Quicken 2017"]="Personal finance, budgeting and bill tracking.";
  e["Quicken"]="Personal finance, budgeting and bill tracking.";
  e["DXO PhotoLab 9"]="Professional RAW photo editor and noise reducer (DxO).";
  e["mForm"]="MotionVFX mForm — title and layout plug-in for Final Cut Pro.";
  e["USB File Manager"]="Manages and transfers files on USB drives (USB Disk SE).";
  e["WsidService"]="Background service for Wondershare software (Wondershare ID).";
  e["AdGuard for Safari"]="Ad and content blocker for Safari (AdGuard).";
  e["AltTab"]="Adds Windows-style Alt-Tab window switching to macOS.";
  e["Amphetamine"]="Keeps your Mac awake and prevents sleep.";
  e["Apple CS Keynote"]="Apple Keynote — create and present slideshows.";
  e["Apple CS Pages"]="Apple Pages — word processor for documents.";
  e["AudioBookBinder"]="Combines audio files into Apple Books audiobooks.";
  e["Autodesk Access User Interface"]="Manages installs and updates for Autodesk subscription software.";
  e["Autodesk Identity Manager"]="Handles sign-in and licensing for Autodesk software.";
  e["Autodesk Installer"]="Installs and updates Autodesk software.";
  e["Blackmagic Disk Speed Test"]="Measures your disk read/write speed for video work (Blackmagic).";
  e["Blackmagic RAW Player"]="Plays back Blackmagic RAW (.braw) video files.";
  e["Blackmagic RAW Speed Test"]="Benchmarks how fast your Mac decodes Blackmagic RAW.";
  e["Blackmagic Remote Monitor"]="Remote monitoring companion for Blackmagic gear.";
  e["BlockBlock"]="Monitors and blocks persistent malware installs (Objective-See).";
  e["Blow Up 3"]="Enlarges and resizes photos with minimal quality loss (Exposure Software).";
  e["BMDPanelFirmware"]="Updates firmware on DaVinci Resolve control panels (Blackmagic).";
  e["Brother P-touch Editor"]="Design and print labels for Brother P-touch label makers.";
  e["CavalryPlayer"]="Plays back animations exported from Cavalry.";
  e["Claude"]="Anthropic Claude AI assistant.";
  e["CleanUp"]="Companion utility from Apptorium Workspaces.";
  e["Color Wheel"]="Color picker and palette generator.";
  e["ColorSlurp"]="Pick, save, and manage colors on your Mac.";
  e["Cursor Pro"]="Customizes the macOS mouse cursor.";
  e["DaVinci Control Panels Setup"]="Configures DaVinci Resolve hardware control panels (Blackmagic).";
  e["DaVinciRemotePanel"]="Remote control-panel companion for DaVinci Resolve (Blackmagic).";
  e["Downie 4"]="Downloads video from websites (Charlie Monroe).";
  e["DuckDuckGo"]="Privacy-focused web browser.";
  e["EaseUS Data Recovery Wizard"]="Recovers deleted or lost files (EaseUS).";
  e["eM Client"]="Email, calendar, and contacts client.";
  e["Exposure Software Settings Router"]="Preset and settings helper for Exposure Software apps.";
  e["Fairlight Studio Utility"]="Utility for Fairlight audio in DaVinci Resolve (Blackmagic).";
  e["Folder Icons"]="Applies custom icons to folders.";
  e["iStat Menus"]="System monitor in the menu bar — CPU, memory, network (Bjango).";
  e["iStat Menus Menubar"]="Menu-bar component of iStat Menus (Bjango).";
  e["iStatistica Pro"]="System monitor and stats for the menu bar.";
  e["LastPass for Safari"]="LastPass password manager extension for Safari.";
  e["Launchy"]="Quick application launcher.";
  e["Mainspring"]="Planning and productivity app (Mainspring).";
  e["Mocha Pro  2022"]="Planar tracking and visual-effects plug-in (Boris FX Mocha Pro).";
  e["Mole"]="Health and fitness app (Mole).";
  e["Nik 6 Perspective Launcher"]="Launcher for Nik Perspective (DxO Nik Collection).";
  e["NikAppCommon"]="Shared component for the Nik Collection plug-ins (DxO).";
  e["OmniZip"]="Extracts and creates archives such as ZIP and RAR.";
  e["ON1 Develop 2024-suite"]="RAW develop module in ON1 Photo RAW.";
  e["ON1 Develop 2025-suite"]="RAW develop module in ON1 Photo RAW.";
  e["ON1 Develop 2026-suite"]="RAW develop module in ON1 Photo RAW.";
  e["ON1 Effects 2023"]="Photo effects and filters plug-in (ON1).";
  e["ON1 Effects 2024"]="Photo effects and filters plug-in (ON1).";
  e["ON1 Effects 2024-suite"]="Photo effects and filters plug-in (ON1).";
  e["ON1 Effects 2025"]="Photo effects and filters plug-in (ON1).";
  e["ON1 Effects 2025-suite"]="Photo effects and filters plug-in (ON1).";
  e["ON1 Effects 2026-suite"]="Photo effects and filters plug-in (ON1).";
  e["ON1 NoNoise AI 2023"]="AI noise reduction for photos (ON1).";
  e["ON1 NoNoise AI 2024"]="AI noise reduction and sharpening (ON1).";
  e["ON1 Photo RAW 2026"]="RAW photo editor and organizer (ON1).";
  e["ON1 Portrait AI 2023"]="AI portrait retouching (ON1).";
  e["ON1 Portrait AI 2024-suite"]="AI portrait retouching (ON1).";
  e["ON1 Portrait AI 2025-suite"]="AI portrait retouching (ON1).";
  e["ON1 Portrait AI 2026-suite"]="AI portrait retouching (ON1).";
  e["ON1 Resize AI 2023"]="AI photo enlargement and resizing (ON1).";
  e["ON1 Resize AI 2024-suite"]="AI photo enlargement and resizing (ON1).";
  e["ON1 Resize AI 2025-suite"]="AI photo enlargement and resizing (ON1).";
  e["ON1 Resize AI 2026-suite"]="AI photo enlargement and resizing (ON1).";
  e["ON1 Sky Swap AI 2023"]="AI sky replacement for photos (ON1).";
  e["ON1 Sky Swap AI 2024-suite"]="AI sky replacement for photos (ON1).";
  e["ON1 Sky Swap AI 2025-suite"]="AI sky replacement for photos (ON1).";
  e["ON1 Sky Swap AI 2026-suite"]="AI sky replacement for photos (ON1).";
  e["Perspective Efex Launcher"]="Launcher for DxO Perspective — geometry and optical correction.";
  e["Photomator"]="AI-powered photo editor (Pixelmator team).";
  e["QuitApps"]="Quickly quit multiple apps at once (Apptorium).";
  e["Retrobatch"]="Batch image processing (Flying Meat).";
  e["Save as Adobe PDF"]="Adobe helper for saving documents as PDF.";
  e["senddmp"]="Autodesk helper that sends crash and error reports to Autodesk.";
  e["Simple Stocks"]="Track stocks and your portfolio.";
  e["SponsorBlock"]="Skips sponsored segments in YouTube videos (browser extension).";
  e["Structured"]="Daily planner and time-blocking app.";
  e["Sync Folders Pro"]="Synchronizes and backs up folders.";
  e["SyncTime"]="Synchronizes files and folders on a schedule.";
  e["SynologyDrive"]="Syncs files with a Synology NAS (Synology Drive).";
  e["Task Manager TMOG"]="Task and to-do manager (TMOG).";
  e["WindowArranger"]="Arranges and positions app windows (Apptorium).";
  e["Workspaces"]="Organizes project files, apps, and links into workspaces (Apptorium).";
  e["Affinity"]="Affinity creative suite — photo, design, and publishing (Serif).";
  e["AirScanLegacyDiscovery"]="Background helper that discovers scanners and printers.";
  e["Airtable"]="Database and spreadsheet hybrid for organizing work.";
  e["AngryBirdsReloaded"]="Angry Birds game (Apple Arcade).";
  e["App Cleaner & Uninstaller"]="Fully uninstalls apps and removes leftover files.";
  e["Art Text 4"]="Graphic design app for stylized text and logos (BeLight).";
  e["BCCPlusFxPlug4"]="Boris FX Continuum (BCC) video plug-in component.";
  e["Blackmagic Proxy Generator"]="Generates proxy media for DaVinci Resolve (Blackmagic).";
  e["boringNotch"]="Turns the MacBook notch into a useful widget area.";
  e["CapCut"]="Video editor (ByteDance).";
  e["Cardhop"]="Contacts manager (Flexibits).";
  e["Cavalry"]="2D motion-graphics and animation software.";
  e["ChatGPT"]="OpenAI ChatGPT assistant.";
  e["ChatGPT Atlas"]="OpenAI ChatGPT web browser (Atlas).";
  e["claude"]="Anthropic Claude AI assistant.";
  e["Claude Usage"]="Tracks your Claude usage.";
  e["Club Membership Suite"]="Membership management suite for small clubs (Ast-Ware Arts).";
  e["Cocoa-AppleScript Applet"]="A small app built with AppleScript and Cocoa.";
  e["Corel Font Manager 2025"]="Organize, preview, and manage fonts (Corel).";
  e["Cotypist"]="System-wide text autocomplete and prediction.";
  e["Arc"]="Web browser from The Browser Company.";
  e["Dia"]="AI web browser from The Browser Company.";
  e["calibre"]="E-book library manager, viewer and format converter.";
  e["Calibre"]="E-book library manager, viewer and format converter.";
  e["Rosetta Radar"]="This app — shows which of your apps are Intel-only before Apple removes Rosetta 2 (Ast-Ware Arts).";
  e["Disk Drill"]="Data recovery for deleted or lost files (CleverFiles).";
  e["EmbyServer"]="Personal media server (Emby).";
  e["Exposure X7"]="RAW photo editor and organizer (Exposure Software).";
  e["Fax Extended Survey Program"]="Canon background tool that sends anonymous usage statistics.";
  e["FileMaker Pro"]="Build custom databases and apps (Claris).";
  e["Folder Colorizer"]="Adds color to folder icons.";
  e["Fusion"]="Compositing and visual-effects software (Blackmagic).";
  e["Fusion Render Node"]="Network render node for Fusion (Blackmagic).";
  e["FXEditor"]="Effects and scenery editor for flight-sim scenery design.";
  e["Glaze"]="Utility app from Glaze.";
  e["Hallmark Card Studio"]="Design and print greeting cards (Hallmark).";
  e["Icon Keeper"]="Backs up and restores custom Finder icons (Glaze).";
  e["iMazing"]="Manage and back up iPhone and iPad from your Mac.";
  e["iStatistica Sensors"]="Hardware sensor readings for iStatistica.";
  e["Kaleidoscope"]="Compare and merge files and images (diff tool).";
  e["LaunchBar"]="Keyboard launcher and productivity tool (Objective Development).";
  e["Liquid Commander"]="Menu-bar utility (Glaze).";
  e["Menuwhere"]="Opens the menu bar at your pointer (Many Tricks).";
  e["My Stash"]="Quick-access stash utility (Glaze).";
  e["Nik 6 Analog Efex"]="Analog film-effects plug-in (DxO Nik Collection).";
  e["Nik 6 Color Efex"]="Color and creative filters plug-in (DxO Nik Collection).";
  e["Nik 6 Dfine"]="Noise-reduction plug-in (DxO Nik Collection).";
  e["Nik 6 HDR Efex"]="HDR tone-mapping plug-in (DxO Nik Collection).";
  e["Nik 6 Perspective"]="Perspective and geometry correction plug-in (DxO Nik Collection).";
  e["Nik 6 Presharpener"]="Capture-sharpening step (DxO Nik Collection).";
  e["Nik 6 Sharpener Output"]="Final output-sharpening step (DxO Nik Collection).";
  e["Nik 6 Silver Efex"]="Black-and-white film conversion plug-in (DxO Nik Collection).";
  e["Nik 6 Uninstaller"]="Removes the Nik Collection (DxO).";
  e["Nik 6 Viveza"]="Selective color and tone adjustments plug-in (DxO Nik Collection).";
  e["Nitro PDF Pro"]="Create, edit, and sign PDFs (Nitro).";
  e["ON1 Effects 2026"]="Photo effects and filters plug-in (ON1).";
  e["ON1 HDR 2023"]="Merges bracketed photos into HDR images (ON1).";
  e["ON1 Photo Keyword AI 2023"]="AI keyword tagging for photos (ON1).";
  e["Pcalc"]="Advanced scientific calculator.";
  e["PDF Toolkit"]="Merge, split, and edit PDF files.";
  e["Phoenix Code"]="Lightweight code editor (Phoenix Code).";
  e["PhotosRevive"]="AI colorization and restoration for old photos.";
  e["Power Menu"]="Adds power and window controls to the menu bar.";
  e["Private Internet Access"]="VPN client (PIA).";
  e["ProNotes"]="Adds features and shortcuts to Apple Notes.";
  e["Python"]="Python programming language runtime.";
  e["qBittorrent"]="Open-source BitTorrent client.";
  e["Radio Silence"]="Network monitor and firewall.";
  e["Snagit"]="Screen capture and screen recording (TechSmith).";
  e["SoundSource"]="Per-app audio control and equalizer (Rogue Amoeba).";
  e["SpamSieve"]="Spam filtering for Mac email (C-Command).";
  e["Swift Publisher 5"]="Page layout and desktop publishing (BeLight).";
  e["Synology Drive Client"]="Syncs files with a Synology NAS.";
  e["Thaw"]="Menu-bar utility (Thaw).";
  e["uBar"]="Windows-style Dock and taskbar replacement.";
  e["WhatCable"]="Reference guide for cables and connectors.";
  e["Zen"]="Pinball game (Zen Studios).";
  # Substring matches (distinctive names; checked in order)
  add("Final Cut Pro","Apple professional video editor.");
  add("Compressor","Apple video and audio encoder (companion to Final Cut Pro).");
  add("MainStage","Apple live-performance companion to Logic Pro.");
  add("Logic Pro","Apple professional music production studio.");
  add("GarageBand","Apple music creation studio.");
  add("iMovie","Apple easy video editor.");
  add("Motion","Apple motion-graphics and titles tool (Final Cut Pro companion).");
  add("DaVinci Resolve","Professional video editing, color and audio (Blackmagic).");
  add("CleanMyMac","Cleans up and maintains your Mac (MacPaw).");
  add("CleanShot","Screen capture, recording and annotation.");
  add("Microsoft Word","Word processor (Microsoft Office).");
  add("Microsoft Excel","Spreadsheets (Microsoft Office).");
  add("Microsoft PowerPoint","Presentations (Microsoft Office).");
  add("Microsoft Outlook","Email and calendar (Microsoft Office).");
  add("Microsoft OneNote","Note-taking (Microsoft Office).");
  add("Microsoft Teams","Team chat and video meetings.");
  add("OneDrive","Microsoft cloud file storage and sync.");
  add("Photoshop","Adobe image editing and compositing.");
  add("Lightroom","Adobe photo management and editing.");
  add("Illustrator","Adobe vector graphics editor.");
  add("InDesign","Adobe page layout and publishing.");
  add("Premiere Pro","Adobe professional video editor.");
  add("Premiere Rush","Adobe simple video editor.");
  add("After Effects","Adobe motion graphics and visual effects.");
  add("Acrobat","View, edit and sign PDF files (Adobe).");
  add("Audition","Adobe audio editing.");
  add("Media Encoder","Adobe media encoding tool.");
  add("Adobe Bridge","Adobe media browser and organizer.");
  add("Dreamweaver","Adobe web design tool.");
  add("Adobe Express","Adobe quick graphic design tool.");
  add("Affinity Photo","Photo editor (Serif).");
  add("Affinity Designer","Vector and graphic design (Serif).");
  add("Affinity Publisher","Page layout and publishing (Serif).");
  add("Pixelmator","Image editor for the Mac.");
  add("Capture One","Professional RAW photo editor.");
  add("Luminar","AI photo editor (Skylum).");
  add("Topaz","AI photo and video enhancement (Topaz Labs).");
  add("Sketch","UI and vector design tool.");
  add("Figma","Collaborative interface design tool.");
  add("Blender","3D modeling, animation and rendering (free).");
  add("HandBrake","Converts and compresses video files.");
  add("Google Chrome","Web browser.");
  add("Chromium","Open-source web browser.");
  add("Firefox","Web browser (Mozilla).");
  add("Microsoft Edge","Web browser (Microsoft).");
  add("Brave Browser","Privacy-focused web browser.");
  add("Vivaldi","Customizable web browser.");
  add("Opera","Web browser.");
  add("zoom.us","Video meetings and webinars.");
  add("Zoom","Video meetings and webinars.");
  add("Slack","Team messaging and collaboration.");
  add("Discord","Voice, video and text chat.");
  add("Spotify","Music and podcast streaming.");
  add("Dropbox","Cloud file storage and sync.");
  add("Google Drive","Google cloud storage and sync.");
  add("Notion","Notes, docs and project workspace.");
  add("Obsidian","Markdown knowledge base and notes.");
  add("1Password","Password manager.");
  add("Bitwarden","Password manager.");
  add("Visual Studio Code","Microsoft code editor.");
  add("Sublime Text","Fast code and text editor.");
  add("BBEdit","Professional text and code editor.");
  add("iTerm","Terminal replacement for the Mac.");
  add("Xcode","Apple tools for building apps.");
  add("Android Studio","Android app development environment (Google).");
  add("Docker","Run apps in containers.");
  add("Parallels","Run Windows and other systems in a virtual machine.");
  add("VMware Fusion","Run Windows and other systems in a virtual machine.");
  add("UTM","Run virtual machines on the Mac.");
  add("VirtualBox","Run virtual machines (Oracle).");
  add("Transmit","FTP/SFTP and cloud file transfer (Panic).");
  add("Cyberduck","FTP/SFTP and cloud storage browser.");
  add("Fantastical","Calendar app with natural-language input.");
  add("BusyCal","Calendar and tasks app.");
  add("Bartender","Organizes the menu-bar icons.");
  add("Alfred","Launcher and productivity tool.");
  add("Raycast","Launcher and productivity tool.");
  add("Rectangle","Window management with keyboard shortcuts.");
  add("Magnet","Window snapping and management.");
  add("Hazel","Automated file organization.");
  add("Keka","Compress and extract archives.");
  add("The Unarchiver","Extracts many archive formats.");
  add("Keka","Compress and extract archive files.");
  add("AppCleaner","Uninstalls apps and their leftover files.");
  add("Carbon Copy Cloner","Bootable backup and disk cloning.");
  add("SuperDuper","Bootable backup and disk cloning.");
  add("Steam","Valve game store and launcher.");
  add("OBS","Screen recording and live streaming (OBS Studio).");
  add("Audacity","Free audio recording and editing.");
  add("VLC","Plays almost any audio or video file.");
  add("IINA","Modern media player for the Mac.");
  add("Plex","Streams your personal media library.");
  add("Signal","Encrypted messaging.");
  add("WhatsApp","Messaging and calls.");
  add("Telegram","Messaging app.");
  add("TeamViewer","Remote desktop access and support.");
  add("AnyDesk","Remote desktop access.");
  add("Little Snitch","Network monitor and firewall.");
  add("Malwarebytes","Malware protection and removal.");
  add("Grammarly","Writing and grammar assistant.");
  add("Zotero","Reference manager for research.");
  add("Mendeley","Reference manager for research.");
  add("Calibre","E-book library manager and converter.");
  add("Kindle","Reads Kindle e-books.");
  add("Things","Personal task manager.");
  add("OmniFocus","Task and project manager.");
  add("OmniGraffle","Diagramming and design tool.");
  add("MindNode","Mind-mapping tool.");
  add("Setapp","Subscription that provides a suite of Mac apps.");
  add("Descript","Edit audio and video by editing the transcript.");
  add("Loom","Screen and video recording.");
  add("Notability","Note-taking with handwriting and audio.");
  add("GoodNotes","Handwritten notes and PDF annotation.");
  add("PDF Expert","Read, edit and annotate PDFs (Readdle).");
  add("PDFpen","Edit and annotate PDFs.");
  add("Bear","Markdown notes app.");
  add("Ulysses","Writing app for long-form text.");
  add("Scrivener","Long-form writing and manuscript tool.");
  add("Reeder","RSS news reader.");
  add("NetNewsWire","Free RSS reader.");
  add("Geekbench","Benchmarks the Mac CPU and GPU.");
  add("DaisyDisk","Visualizes disk usage to find and remove large files.");
  add("Aurora HDR","HDR photo editor from Skylum (now discontinued).");
  add("Data Rescue","Recovers lost files from damaged or erased drives.");
  add("DxO PhotoLab","Professional RAW photo editor and noise reducer.");
  add("DXOPhotoLab","Professional RAW photo editor and noise reducer (DxO).");
  add("FotoMagico","Builds photo and video slideshows set to music.");
  add("Paprika","Saves recipes and plans meals and grocery lists.");
  add("Perfectly Clear","Automatic photo and video correction.");
  add("Send to Kindle","Sends documents from the Mac to your Kindle library.");
  add("TripIt","Organizes travel bookings into one itinerary.");
  add("WALTR","Copies music, video and files to iPhone/iPad without iTunes.");
  add("Mac FoneTrans","Transfers and manages files between Mac and iPhone/iPad.");
  add("Audiobook Builder","Turns audio files and CDs into Apple Books audiobooks.");
  add("Squash","Compresses and optimizes images for the web.");
  add("Sensei","Cleans up and monitors the Mac for performance.");
  add("Synology Active Backup","Backs this Mac up to a Synology NAS.");
  add("Synology Note Station","Synology note-taking client (syncs with a NAS).");
  add("Retouch4me","AI photo retouching that heals skin and removes objects.");
  add("PDFelement","Create, edit, convert and sign PDF files (Wondershare).");
  add("Recoverit","Recovers deleted or lost files (Wondershare).");
  add("Repairit","Repairs corrupted video, photo and document files (Wondershare).");
  add("KextViewr","Shows the kernel extensions (kexts) currently loaded.");
  add("Folx","Download manager and torrent client.");
  add("Beyond Compare","Compares and merges files and folders.");
  add("Creative Cloud","Adobe app that installs and updates Creative Cloud apps.");
  add("Core Sync","Adobe background file-syncing component.");
  add("CCXProcess","Adobe Creative Cloud background content helper.");
  add("ZenPinball","Zen Pinball / Pinball FX video game.");
  add("Printer Registration","Apple helper for registering supported printers.");
  add("dimexe","Corel installer/updater helper.");
  add("CUH","Corel Update Helper (checks for Corel software updates).");
  add("Dr.Fone","Wondershare Dr.Fone module for managing iPhone/Android devices.");
  add("Continuum","Licensing or update helper for Boris FX Continuum video plug-ins.");
  add("Navigation Updater","Updates maps or firmware for a GPS navigation device.");
  add("ON1 Photo Keyword","AI keyword tagging for photos (ON1).");
  add("ON1 Sky Swap","AI sky replacement for photos (ON1).");
  add("ON1 NoNoise","AI noise reduction for photos (ON1).");
  add("ON1 Portrait","AI portrait retouching (ON1).");
  add("ON1 Resize","AI photo enlargement and resizing (ON1).");
  add("ON1 Photo RAW","RAW photo editor and organizer (ON1).");
  add("ON1 HDR","Merges photos into HDR images (ON1).");
  add("ON1 Develop","RAW develop module (ON1).");
  add("ON1 Effects","Photo effects and filters plug-in (ON1).");
  add("ON1 ","ON1 photo-editing plug-in.");
  add("Nik 6","Photo-editing plug-in from the DxO Nik Collection.");
  add("Blackmagic","Blackmagic Design video and audio tool.");
  add("Autodesk","Autodesk software component.");

  # --- Known website / product-page links ---------------------------------
  # Clicking an app's name opens this page so the user can check for an
  # Apple-Silicon or Universal update. Exact matches first, then substrings.
  eu["Arc"]="https://arc.net/";
  eu["Dia"]="https://www.diabrowser.com/";
  eu["calibre"]="https://calibre-ebook.com/";
  eu["Calibre"]="https://calibre-ebook.com/";
  eu["Quicken 2017"]="https://www.quicken.com/";
  eu["Quicken"]="https://www.quicken.com/";
  eu["Claude"]="https://claude.ai/download";
  eu["claude"]="https://claude.ai/download";
  eu["ChatGPT"]="https://openai.com/chatgpt/download/";
  eu["Photomator"]="https://www.pixelmator.com/photomator/";
  eu["DuckDuckGo"]="https://duckduckgo.com/mac";
  eu["Downie 4"]="https://software.charliemonroe.net/downie/";
  eu["eM Client"]="https://www.emclient.com/";
  eu["Airtable"]="https://www.airtable.com/downloads";
  eu["iStat Menus"]="https://bjango.com/mac/istatmenus/";
  eu["FileMaker Pro"]="https://www.claris.com/filemaker/";
  eu["Nitro PDF Pro"]="https://www.gonitro.com/";
  eu["Snagit"]="https://www.techsmith.com/screen-capture.html";
  eu["SoundSource"]="https://rogueamoeba.com/soundsource/";
  eu["SpamSieve"]="https://c-command.com/spamsieve/";
  eu["qBittorrent"]="https://www.qbittorrent.org/";
  eu["Private Internet Access"]="https://www.privateinternetaccess.com/";
  # Substring families
  su("Final Cut Pro","https://www.apple.com/final-cut-pro/");
  su("Logic Pro","https://www.apple.com/logic-pro/");
  su("GarageBand","https://www.apple.com/mac/garageband/");
  su("iMovie","https://www.apple.com/imovie/");
  su("Compressor","https://www.apple.com/final-cut-pro/compressor/");
  su("MainStage","https://www.apple.com/mainstage/");
  su("Motion","https://www.apple.com/final-cut-pro/motion/");
  su("DaVinci Resolve","https://www.blackmagicdesign.com/products/davinciresolve");
  su("Fusion Render Node","https://www.blackmagicdesign.com/products/fusion");
  su("Fusion","https://www.blackmagicdesign.com/products/fusion");
  su("Blackmagic","https://www.blackmagicdesign.com/");
  su("CleanMyMac","https://macpaw.com/cleanmymac");
  su("Gemini","https://macpaw.com/gemini");
  su("CleanShot","https://cleanshot.com/");
  su("Microsoft Word","https://www.microsoft.com/microsoft-365/word");
  su("Microsoft Excel","https://www.microsoft.com/microsoft-365/excel");
  su("Microsoft PowerPoint","https://www.microsoft.com/microsoft-365/powerpoint");
  su("Microsoft Outlook","https://www.microsoft.com/microsoft-365/outlook/email-and-calendar-software-microsoft-outlook");
  su("Microsoft OneNote","https://www.microsoft.com/microsoft-365/onenote/digital-note-taking-app");
  su("Microsoft Teams","https://www.microsoft.com/microsoft-teams/");
  su("OneDrive","https://www.microsoft.com/microsoft-365/onedrive/download");
  su("Photoshop","https://www.adobe.com/products/photoshop.html");
  su("Lightroom","https://www.adobe.com/products/photoshop-lightroom.html");
  su("Illustrator","https://www.adobe.com/products/illustrator.html");
  su("InDesign","https://www.adobe.com/products/indesign.html");
  su("Premiere Pro","https://www.adobe.com/products/premiere.html");
  su("Premiere Rush","https://www.adobe.com/products/premiere-rush.html");
  su("After Effects","https://www.adobe.com/products/aftereffects.html");
  su("Acrobat","https://www.adobe.com/acrobat.html");
  su("Audition","https://www.adobe.com/products/audition.html");
  su("Media Encoder","https://www.adobe.com/products/media-encoder.html");
  su("Adobe Bridge","https://www.adobe.com/products/bridge.html");
  su("Dreamweaver","https://www.adobe.com/products/dreamweaver.html");
  su("Adobe Express","https://www.adobe.com/express/");
  su("Creative Cloud","https://www.adobe.com/creativecloud.html");
  su("Affinity","https://affinity.serif.com/");
  su("Pixelmator","https://www.pixelmator.com/pro/");
  su("Capture One","https://www.captureone.com/");
  su("Luminar","https://skylum.com/luminar");
  su("Aurora HDR","https://skylum.com/aurorahdr");
  su("Topaz","https://www.topazlabs.com/");
  su("Sketch","https://www.sketch.com/");
  su("Figma","https://www.figma.com/downloads/");
  su("Blender","https://www.blender.org/");
  su("HandBrake","https://handbrake.fr/");
  su("Google Chrome","https://www.google.com/chrome/");
  su("Chromium","https://www.chromium.org/");
  su("Firefox","https://www.mozilla.org/firefox/");
  su("Microsoft Edge","https://www.microsoft.com/edge");
  su("Brave Browser","https://brave.com/");
  su("Vivaldi","https://vivaldi.com/");
  su("Opera","https://www.opera.com/");
  su("zoom.us","https://zoom.us/download");
  su("Zoom","https://zoom.us/download");
  su("Slack","https://slack.com/downloads/mac");
  su("Discord","https://discord.com/download");
  su("Spotify","https://www.spotify.com/download/");
  su("Dropbox","https://www.dropbox.com/install");
  su("Google Drive","https://www.google.com/drive/download/");
  su("Notion","https://www.notion.so/desktop");
  su("Obsidian","https://obsidian.md/download");
  su("1Password","https://1password.com/downloads/mac/");
  su("Bitwarden","https://bitwarden.com/download/");
  su("Visual Studio Code","https://code.visualstudio.com/");
  su("Sublime Text","https://www.sublimetext.com/");
  su("BBEdit","https://www.barebones.com/products/bbedit/");
  su("iTerm","https://iterm2.com/");
  su("Xcode","https://developer.apple.com/xcode/");
  su("Android Studio","https://developer.android.com/studio");
  su("Docker","https://www.docker.com/products/docker-desktop/");
  su("Parallels","https://www.parallels.com/");
  su("VMware Fusion","https://www.vmware.com/products/desktop-hypervisor.html");
  su("UTM","https://mac.getutm.app/");
  su("VirtualBox","https://www.virtualbox.org/");
  su("Transmit","https://panic.com/transmit/");
  su("Cyberduck","https://cyberduck.io/");
  su("Fantastical","https://flexibits.com/fantastical");
  su("BusyCal","https://www.busymac.com/busycal/");
  su("Bartender","https://www.macbartender.com/");
  su("Alfred","https://www.alfredapp.com/");
  su("Raycast","https://www.raycast.com/");
  su("Rectangle","https://rectangleapp.com/");
  su("Magnet","https://magnet.crowdcafe.com/");
  su("Hazel","https://www.noodlesoft.com/");
  su("The Unarchiver","https://theunarchiver.com/");
  su("Keka","https://www.keka.io/");
  su("AppCleaner","https://freemacsoft.net/appcleaner/");
  su("Carbon Copy Cloner","https://bombich.com/");
  su("SuperDuper","https://www.shirt-pocket.com/SuperDuper/");
  su("Steam","https://store.steampowered.com/about/");
  su("OBS","https://obsproject.com/");
  su("Audacity","https://www.audacityteam.org/");
  su("VLC","https://www.videolan.org/vlc/");
  su("IINA","https://iina.io/");
  su("Plex","https://www.plex.tv/");
  su("Signal","https://signal.org/download/");
  su("WhatsApp","https://www.whatsapp.com/download");
  su("Telegram","https://telegram.org/");
  su("TeamViewer","https://www.teamviewer.com/");
  su("AnyDesk","https://anydesk.com/");
  su("Little Snitch","https://www.obdev.at/products/littlesnitch/");
  su("Malwarebytes","https://www.malwarebytes.com/mac");
  su("Grammarly","https://www.grammarly.com/");
  su("Zotero","https://www.zotero.org/");
  su("Mendeley","https://www.mendeley.com/");
  su("Calibre","https://calibre-ebook.com/");
  su("Kindle","https://www.amazon.com/kindle-dbs/fd/kcp");
  su("Things","https://culturedcode.com/things/");
  su("OmniFocus","https://www.omnigroup.com/omnifocus/");
  su("OmniGraffle","https://www.omnigroup.com/omnigraffle/");
  su("MindNode","https://www.mindnode.com/");
  su("Setapp","https://setapp.com/");
  su("Descript","https://www.descript.com/");
  su("Loom","https://www.loom.com/");
  su("Notability","https://notability.com/");
  su("GoodNotes","https://www.goodnotes.com/");
  su("PDF Expert","https://pdfexpert.com/");
  su("Bear","https://bear.app/");
  su("Ulysses","https://ulysses.app/");
  su("Scrivener","https://www.literatureandlatte.com/scrivener/");
  su("Reeder","https://reederapp.com/");
  su("NetNewsWire","https://netnewswire.com/");
  su("Geekbench","https://www.geekbench.com/");
  su("DaisyDisk","https://daisydiskapp.com/");
  su("DxO PhotoLab","https://www.dxo.com/dxo-photolab/");
  su("DXOPhotoLab","https://www.dxo.com/dxo-photolab/");
  su("Nik 6","https://nikcollection.dxo.com/");
  su("ON1","https://www.on1.com/");
  su("Corel","https://www.corel.com/");
  su("Swift Publisher","https://www.belightsoft.com/products/publisher/");
  su("Art Text","https://www.belightsoft.com/products/arttext/");
  su("iMazing","https://imazing.com/");
  su("Disk Drill","https://www.cleverfiles.com/disk-drill.html");
  su("Kaleidoscope","https://kaleidoscope.app/");
  su("LaunchBar","https://www.obdev.at/products/launchbar/");
  su("EaseUS","https://www.easeus.com/");
  su("PDFelement","https://pdf.wondershare.com/");
  su("Recoverit","https://recoverit.wondershare.com/");
  su("Repairit","https://repairit.wondershare.com/");
  su("Dr.Fone","https://drfone.wondershare.com/");
  su("Synology","https://www.synology.com/");
  su("CapCut","https://www.capcut.com/");
  su("Emby","https://emby.media/");
  su("FileMaker","https://www.claris.com/filemaker/");
  su("Hallmark Card Studio","https://hallmarksoftware.com/");
  su("Paprika","https://www.paprikaapp.com/");
  # Additional developer pages (reported as missing)
  eu["Data Rescue 4"]="https://www.prosofteng.com/support/data-rescue-4";
  su("Data Rescue","https://www.prosofteng.com/data-rescue");
  eu["DXO PhotoLab 9"]="https://www.dxo.com/dxo-photolab/";
  su("DXO PhotoLab","https://www.dxo.com/dxo-photolab/");
  su("DxO PhotoLab","https://www.dxo.com/dxo-photolab/");
  su("FotoMagico","https://fotomagico.com/");
  su("Mac FoneTrans","https://www.aiseesoft.com/mac-ios-transfer/");
  eu["Perfectly Clear Video"]="https://perfectlyclear.ai/learn/perfectly-clear-video/";
  eu["Perfectly Clear Workbench"]="https://perfectlyclear.ai/learn/sdk/";
  su("Perfectly Clear","https://www.perfectlyclear.com/");
  eu["Retouch4me Heal"]="https://retouch4.me/products/retouch-plugins/101?lng=en";
  su("Retouch4me","https://retouch4.me/");
  su("Sensei","https://cindori.com/sensei");
  eu["Squash"]="https://apps.apple.com/app/id1065789187";
  su("TripIt","https://www.tripit.com/web");
  eu["USB File Manager"]="https://apps.apple.com/app/id370531520";
  eu["WALTR PRO"]="https://softorino.com/waltr";
  su("WALTR","https://softorino.com/waltr");
  eu["ZenPinballParty"]="https://apps.apple.com/app/id1536783591";
  su("ZenPinball","https://apps.apple.com/app/id1536783591");
}
function su(k,u){ nu++; KU[nu]=k; VU[nu]=u }
# Whole-word containment: true only if needle appears in hay bounded by
# non-alphanumeric characters (or string ends), so "Signal" matches "Signal"
# and "Signal Beta" but NOT "SignalRGB". A needle that itself starts/ends with
# a non-alphanumeric (e.g. a trailing space) treats that side as pre-bounded,
# which keeps the curated family keys (e.g. "ON1 ", "Nik 6") working.
function has_word(hay, needle,   L,off,p,rest,lc,rc,fc,lastc){
  L=length(needle); if(L==0) return 0;
  fc=substr(needle,1,1); lastc=substr(needle,L,1); off=0;
  while(1){
    rest=substr(hay,off+1); p=index(rest,needle); if(p==0) return 0; p=off+p;
    lc=(p==1)?"":substr(hay,p-1,1); rc=substr(hay,p+L,1);
    if( (lc=="" || lc !~ /[A-Za-z0-9]/ || fc !~ /[A-Za-z0-9]/) &&
        (rc=="" || rc !~ /[A-Za-z0-9]/ || lastc !~ /[A-Za-z0-9]/) ) return 1;
    off=p;
  }
}
function url(name, path,   i){
  if (name in eu) return eu[name];
  for(i=1;i<=n;i++){ if((i in U) && has_word(name,K[i])) return U[i]; }
  for(i=1;i<=nu;i++){ if(has_word(name,KU[i])) return VU[i]; }
  return "";
}
function pretty(s){
  if(s=="apple")return "Apple"; if(s=="mac_app_store")return "Mac App Store";
  if(s=="identified_developer")return "Identified developer"; if(s=="unknown")return "Unidentified";
  if(s=="web")return "Web download"; if(s=="external")return "External volume"; return s;
}
function desc(name, path,   i){
  if (name in e) return e[name];
  if (name ~ /^Uninstall /){ i=name; sub(/^Uninstall /,"",i); return "Uninstaller for " i "." }
  if (name ~ /^Remove ON1/) return "Uninstaller for an ON1 photo-editing module.";
  for(i=1;i<=n;i++){ if(has_word(name,K[i])) return V[i]; }
  if (name ~ /License|Activation|Activate|Deactivate/) return "License or activation helper for its parent app.";
  if (name ~ /[Uu]pdater|[Uu]pdate$/) return "Background updater that checks for and installs new versions.";
  if (name ~ /Helper|Agent|Daemon|Crashpad|Renderer|(^| )Service/) return "Background helper process for its parent app.";
  if (path ~ /\/Adobe/) return "Adobe Creative Cloud support component.";
  if (path ~ /PrivateFrameworks|\/System\/Library\/|\/System\/Applications\//) return "Built-in macOS system component.";
  return "";
}
FILENAME ~ /appdb\.tsv$/    { if(!($1 in e)) e[$1]=$2; if($3!="" && !($1 in eu)) eu[$1]=$3; next }
FILENAME ~ /arch\.tsv$/     { arch[$1]=$2; next }
FILENAME ~ /dev\.tsv$/      { dev[$1]=$2; next }
FILENAME ~ /lastopen\.tsv$/ { lastopen[$1]=$2; next }
{ a=(arch[FNR]!=""?arch[FNR]:"Other");
  src=pretty($3);
  if(dev[FNR]!="" && $3!="apple" && $3!="mac_app_store") src=dev[FNR];
  print $1 "\t" a "\t" $2 "\t" src "\t" $4 "\t" $6 "\t" desc($1,$6) "\t" url($1,$6) "\t" lastopen[FNR] }
AWK
/usr/bin/awk -f "$DESCAWK" "$APPDB_TSV" "$ARCH_TSV" "$DEV_TSV" "$LASTOPEN_TSV" "$APPS_TSV" > "$FINAL_TSV"

# --- Optional: fill in missing descriptions from the web (opt-in) ----------
# Off by default. Only the NAMES of apps with no built-in description are sent,
# to Apple's App Store search and Wikipedia. Results are guarded against wrong
# matches and cached locally so future runs stay fast and offline.
NETNOTE=""
if [ "$ONLINE" = "1" ]; then
  JS_NET="$WORK/net.js"
  cat > "$JS_NET" <<'JXANET'
function run(argv){
  ObjC.import('Foundation');
  var mapPath=argv[0], netDir=argv[1], outPath=argv[2];
  function rd(p){ var s=$.NSString.stringWithContentsOfFileEncodingError($(p),$.NSUTF8StringEncoding,null); return s?ObjC.unwrap(s):""; }
  function norm(s){ return String(s||"").toLowerCase().replace(/[^a-z0-9]+/g,""); }
  function toks(s){ return String(s||"").toLowerCase().split(/[^a-z0-9]+/).filter(function(t){return t.length>=2 && !/^\d+$/.test(t);}); }
  function matchOK(track,name){ var nt=norm(track), q=toks(name); if(!q.length) return false; var m=0; for(var i=0;i<q.length;i++){ if(nt.indexOf(q[i])!==-1) m++; } return m>=1 && (m/q.length)>=0.5; }
  function clip(t,maxLen){ t=String(t||"").replace(/[\t\r\n]+/g," ").replace(/\s+/g," ").trim(); if(!t) return "";
    var mm=t.match(/^.*?[.!?](\s|$)/); var out=mm?mm[0].trim():t;
    if(out.length<60){ var rest=t.slice(out.length).match(/^.*?[.!?](\s|$)/); if(rest) out=(out+" "+rest[0].trim()).trim(); }
    if(out.length>maxLen) out=out.slice(0,maxLen).replace(/\s+\S*$/,"")+"…"; return out; }
  function fromItunes(j,name){ var d; try{ d=JSON.parse(j); }catch(e){ return null; }
    if(!d.results||!d.results.length) return null; var r=d.results[0];
    if(!matchOK(r.trackName,name)) return null;
    var u=String(r.trackViewUrl||r.sellerUrl||"").replace(/[\t\r\n]+/g," ").trim();
    return { desc:clip(r.description,150), url:u }; }
  function fromWiki(j,name){ var d; try{ d=JSON.parse(j); }catch(e){ return null; }
    var pages; try{ pages=d.query.pages; }catch(e){ return null; }
    for(var k in pages){ var p=pages[k]; if(!p||p.missing!==undefined) continue;
      if(!matchOK(p.title,name)) return null;
      var ex=String(p.extract||""); if(!ex) return null;
      if(!/soft|app|applicat|program|editor|utilit|browser|plug|macos|\bmac\b|game|player|manager|extension|client|(^|\W)tool/i.test(ex)) return null;
      return { desc:clip(ex,150), url:"" }; }
    return null; }
  var lines=rd(mapPath).split("\n"), out="";
  for(var i=0;i<lines.length;i++){ if(lines[i]==="") continue;
    var f=lines[i].split("\t"), idx=f[0], nm=f[1]||"";
    var res=fromItunes(rd(netDir+"/"+idx+".itunes"),nm);
    if(!res||!res.desc) res=fromWiki(rd(netDir+"/"+idx+".wiki"),nm);
    if(res&&res.desc) out += nm+"\t"+res.desc+"\t"+(res.url||"")+"\n";
  }
  $(out).writeToFileAtomicallyEncodingError($(outPath),true,$.NSUTF8StringEncoding,null);
  return "OK";
}
JXANET

  APPSUP="$HOME/Library/Application Support/Rosetta Radar"; mkdir -p "$APPSUP" 2>/dev/null
  CACHE="$APPSUP/desc-cache.tsv"; [ -f "$CACHE" ] || : > "$CACHE"
  /usr/bin/awk -F'\t' '($7=="" && $1!=""){print $1}' "$FINAL_TSV" | /usr/bin/sort -u > "$WORK/unknown.txt"
  : > "$WORK/allnet.tsv"; : > "$WORK/tofetch.txt"
  while IFS= read -r nm; do
    [ -n "$nm" ] || continue
    crow="$(/usr/bin/awk -F'\t' -v n="$nm" '$1==n{print $2"\t"$3; exit}' "$CACHE")"
    cd="${crow%%$'\t'*}"
    if [ -n "$cd" ]; then printf '%s\t%s\n' "$nm" "$crow" >> "$WORK/allnet.tsv"
    else printf '%s\n' "$nm" >> "$WORK/tofetch.txt"; fi
  done < "$WORK/unknown.txt"
  TOTAL="$(/usr/bin/awk 'END{print NR}' "$WORK/tofetch.txt")"; [ -n "$TOTAL" ] || TOTAL=0
  mkdir -p "$WORK/net"; : > "$WORK/fetchmap.tsv"; idx=0
  while IFS= read -r nm; do
    [ -n "$nm" ] || continue
    idx=$((idx+1)); D="$TOTAL"; [ "$D" -gt 0 ] || D=1
    write_prog "$(( idx*100/D ))" "Looking up descriptions online" "Checking $idx of $TOTAL: $nm"
    printf '%s\t%s\n' "$idx" "$nm" >> "$WORK/fetchmap.tsv"
    /usr/bin/curl -sS -G --max-time 6 "https://itunes.apple.com/search" \
      --data "media=software&entity=macSoftware&limit=1&country=US" \
      --data-urlencode "term=$nm" > "$WORK/net/$idx.itunes" 2>/dev/null || true
    /usr/bin/curl -sS -G --max-time 6 -H "accept: application/json" "https://en.wikipedia.org/w/api.php" \
      --data "action=query&format=json&prop=extracts&exintro&explaintext&redirects=1" \
      --data-urlencode "titles=$nm" > "$WORK/net/$idx.wiki" 2>/dev/null || true
  done < "$WORK/tofetch.txt"
  if [ "$TOTAL" -gt 0 ]; then
    /usr/bin/osascript -l JavaScript "$JS_NET" "$WORK/fetchmap.tsv" "$WORK/net" "$WORK/fetched.tsv" 2>/dev/null || true
    if [ -s "$WORK/fetched.tsv" ]; then cat "$WORK/fetched.tsv" >> "$WORK/allnet.tsv"; cat "$WORK/fetched.tsv" >> "$CACHE"; fi
  fi
  if [ -s "$WORK/allnet.tsv" ]; then
    /usr/bin/awk -F'\t' 'FNR==NR{d[$1]=$2; u[$1]=$3; next}
      { if($7=="" && ($1 in d)) $7=d[$1];
        if($8=="" && ($1 in u) && u[$1]!="") $8=u[$1];
        print $1"\t"$2"\t"$3"\t"$4"\t"$5"\t"$6"\t"$7"\t"$8"\t"$9 }' "$WORK/allnet.tsv" "$FINAL_TSV" > "$WORK/final2.tsv" && mv "$WORK/final2.tsv" "$FINAL_TSV"
  fi
  NFILLED="$(/usr/bin/awk -F'\t' 'NF>=2 && $2!=""{c++} END{print c+0}' "$WORK/allnet.tsv")"
  if [ "${NFILLED:-0}" -gt 0 ]; then
    NETNOTE="Descriptions for $NFILLED app(s) were filled in from the web (Apple App Store and Wikipedia) and may be approximate."
  else
    NETNOTE="Online lookup was enabled, but no additional descriptions were found."
  fi
fi

# Short scan-mode label + a footer note for offline runs, so every report
# states plainly whether it was done locally or used the internet.
if [ "$ONLINE" = "1" ]; then
  SCANMODE="Online lookup used (App Store + Wikipedia)"
else
  SCANMODE="Offline — no internet lookup used"
  NETNOTE="This scan was performed entirely offline. Descriptions and links come only from the built-in library; no internet connection was used."
fi

# --- CSV (sorted Intel, Universal, Apple Silicon, Other; then by name) ------
# Only written when the user asked for a CSV (Both or "CSV only").
if [ "$OUT_CSV" = "1" ]; then
{
  printf 'Name,Architecture,Version,Location,Source,Last Modified,Last Opened,Description,Website\n'
  /usr/bin/awk -F'\t' '
    function q(s){ if(s ~ /[",\r\n]/){ gsub(/"/,"\"\"",s); return "\"" s "\"" } return s }
    { rank=($2=="Intel"?1:($2=="32-bit Intel"?2:($2=="Universal"?3:($2=="Apple Silicon"?4:5))));
      printf "%d\t%s\t%s,%s,%s,%s,%s,%s,%s,%s,%s\n", rank, tolower($1),
             q($1),q($2),q($3),q($6),q($4),q($5),q($9),q($7),q($8) }
  ' "$FINAL_TSV" | /usr/bin/sort -t"$(printf '\t')" -k1,1n -k2,2 | /usr/bin/cut -f3-
} > "$CSV"
# Confirm the CSV was actually written (it always has at least the header row),
# so we never later claim a CSV was saved when the folder wasn't writable.
[ -s "$CSV" ] || fail "The CSV could not be saved to \"$OUTDIR\". Please make sure that folder is writable, then try again."
fi

# --- JXA #2: build the HTML report -----------------------------------------
cat > "$JS2" <<'JXA2'
function run(argv){
  ObjC.import('Foundation');
  var finalPath=argv[0], htmlPath=argv[1], brand=argv[2]||"", contact=argv[3]||"",
      macosName=argv[4]||"macOS", macosVer=argv[5]||"", chip=argv[6]||"", model=argv[7]||"",
      hostn=argv[8]||"", stamp=argv[9]||"", extNote=argv[10]||"", netNote=argv[11]||"", version=argv[12]||"", scanMode=argv[13]||"", writeHtml=argv[14]||"1";
  function readFile(p){ var s=$.NSString.stringWithContentsOfFileEncodingError($(p),$.NSUTF8StringEncoding,null); return s?ObjC.unwrap(s):""; }
  function writeFile(p,c){ return $(c).writeToFileAtomicallyEncodingError($(p),true,$.NSUTF8StringEncoding,null); }
  function esc(s){ if(s==null) return ""; return String(s).replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/"/g,"&quot;"); }

  var raw=readFile(finalPath);
  var buckets={ "Intel":[], "32-bit Intel":[], "Universal":[], "Apple Silicon":[], "Other":[] }, all=[];
  var lines=raw.split("\n");
  for(var i=0;i<lines.length;i++){ if(lines[i]==="") continue;
    var f=lines[i].split("\t");
    var rec={ name:f[0]||"(unnamed)", arch:f[1]||"Other", version:f[2]||"", source:f[3]||"", modified:f[4]||"", path:f[5]||"", desc:f[6]||"", url:f[7]||"", lastopen:f[8]||"" };
    (buckets[rec.arch]||buckets["Other"]).push(rec); all.push(rec);
  }
  function byName(a,b){ return a.name.toLowerCase()<b.name.toLowerCase()?-1:1; }
  for(var b in buckets) buckets[b].sort(byName);
  var nIntel=buckets["Intel"].length, nLeg=buckets["32-bit Intel"].length, nUni=buckets["Universal"].length,
      nArm=buckets["Apple Silicon"].length, nOther=buckets["Other"].length, total=all.length;

  function rows(arch){ var l=buckets[arch]||[]; if(!l.length) return '<tr class="empty"><td colspan="6">None found.</td></tr>';
    var o=""; for(var j=0;j<l.length;j++){ var r=l[j];
      var loc = r.path ? '<a href="#" class="loc" data-path="'+esc(r.path)+'">'+esc(r.path)+'</a>' : '';
      var safeUrl = (/^https?:\/\//i.test(r.url)) ? r.url : "";
      var nm = (safeUrl ? '<a class="applink" href="'+esc(safeUrl)+'" target="_blank" rel="noopener noreferrer" title="Open the developer’s page to check for an update">'+esc(r.name)+'</a>' : '<span class="app">'+esc(r.name)+'</span>') + (r.desc? '<div class="desc">'+esc(r.desc)+'</div>' : '');
      o+='<tr class="app-row">'
        +'<td class="name" data-sort="'+esc(r.name.toLowerCase())+'">'+nm+'</td>'
        +'<td data-sort="'+esc(r.version.toLowerCase())+'">'+esc(r.version)+'</td>'
        +'<td data-sort="'+esc(r.source.toLowerCase())+'">'+esc(r.source)+'</td>'
        +'<td data-sort="'+esc(r.modified)+'">'+esc(r.modified)+'</td>'
        +'<td data-sort="'+esc(r.lastopen)+'">'+(r.lastopen?esc(r.lastopen):'<span class="muted">—</span>')+'</td>'
        +'<td class="path" data-sort="'+esc(r.path.toLowerCase())+'">'+loc+'</td></tr>'; }
    return o; }
  function section(arch,dot,id,open){ var l=buckets[arch]||[]; var cls=open?"":"collapsed";
    return '<section id="'+id+'" class="'+cls+'"><h2><span><span class="dot '+dot+'"></span>'+esc(arch)+'</span><span class="badge">'+l.length+' &nbsp; <span class="chev">▾</span></span></h2><table><thead><tr><th data-col="0">Name</th><th data-col="1">Version</th><th data-col="2">Source</th><th data-col="3">Modified</th><th data-col="4">Last Opened</th><th data-col="5">Location</th></tr></thead><tbody>'+rows(arch)+'</tbody></table></section>'; }

  var sysLine=esc(macosName+" "+macosVer)+(chip?" &nbsp;·&nbsp; "+esc(chip):"")+(model?" &nbsp;·&nbsp; "+esc(model):"");
  var legNote = nLeg? ' <br><span class="legwarn"><strong>'+nLeg+' 32-bit Intel app'+(nLeg===1?"":"s")+'</strong> were also found. These are older 32-bit apps that modern macOS can no longer run at all (Rosetta&nbsp;2 does not help), listed in their own section below.</span>' : '';
  var banner;
  if(nIntel===0){ banner='<div class="banner good"><strong>Good news — no Intel-only apps found.</strong> None of the applications scanned require Rosetta&nbsp;2 for their primary executable. (Rosetta Radar checks each app’s main program; an app could still contain a separate Intel-only component or plug-in.)'+legNote+'</div>'; }
  else { banner='<div class="banner warn"><strong>'+nIntel+' Intel-only app'+(nIntel===1?"":"s")+' found.</strong> Each has a 64-bit Intel primary executable that currently runs through Rosetta&nbsp;2 on an Apple&nbsp;Silicon Mac. macOS&nbsp;27 is the last release with general-purpose Rosetta&nbsp;2; starting with macOS&nbsp;28 it is cut back to a limited subset for certain older games, so these apps may stop opening. Check each for an Apple&nbsp;Silicon or Universal update, or a replacement.'+legNote+'</div>'; }

  var html='<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1"><title>Rosetta Radar — '+esc(hostn)+'</title><style>'
+':root{--bg:#f5f6f8;--card:#fff;--ink:#1d1f24;--muted:#6b7280;--line:#e5e7eb;--intel:#c2410c;--intelbg:#fff4ed;--uni:#2563eb;--arm:#059669;--leg:#b45309;}'
+'@media (prefers-color-scheme:dark){:root{--bg:#16181d;--card:#1f232b;--ink:#e7e9ee;--muted:#9aa3b2;--line:#333a45;--intel:#fb923c;--intelbg:#3a2417;--uni:#60a5fa;--arm:#34d399;--leg:#f59e0b;}}'
+'*{box-sizing:border-box}body{margin:0;background:var(--bg);color:var(--ink);font:15px/1.5 -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif}'
+'.wrap{max-width:1040px;margin:0 auto;padding:28px 20px 60px}header h1{margin:0 0 4px;font-size:26px;letter-spacing:-.01em}.sub{color:var(--muted);font-size:13px;margin-bottom:2px}'
+'.tiles{display:flex;flex-wrap:wrap;gap:12px;margin:22px 0}.tile{flex:1 1 140px;background:var(--card);border:1px solid var(--line);border-radius:12px;padding:16px 18px}'
+'.tile .num{font-size:30px;font-weight:700;line-height:1}.tile .lbl{font-size:12px;color:var(--muted);margin-top:6px;text-transform:uppercase;letter-spacing:.04em}'
+'.tile.intel{background:var(--intelbg);border-color:var(--intel)}.tile.intel .num{color:var(--intel)}.tile.uni .num{color:var(--uni)}.tile.arm .num{color:var(--arm)}.tile.leg .num{color:var(--leg)}'
+'.legwarn{display:inline-block;margin-top:6px;color:var(--leg)}'
+'.tile{cursor:pointer;transition:box-shadow .12s,border-color .12s}.tile:hover{border-color:var(--ink)}.tile.active{border-color:var(--ink);box-shadow:0 0 0 2px var(--ink)}'
+'.banner{border-radius:12px;padding:16px 18px;margin:6px 0 18px;border:1px solid var(--line);background:var(--card)}.banner.warn{background:var(--intelbg);border-color:var(--intel)}.banner.good{border-color:var(--arm)}'
+'.note{color:var(--muted);font-size:12.5px;margin:0 0 18px}'
+'.scanmode{display:inline-flex;align-items:center;gap:8px;font-size:12.5px;color:var(--ink);background:var(--card);border:1px solid var(--line);border-radius:999px;padding:5px 12px;margin:0 0 12px}.scanmode .mlabel{font-size:10.5px;font-weight:700;text-transform:uppercase;letter-spacing:.05em;color:var(--muted)}'
+'.controls{margin:8px 0 18px}.controls input{width:100%;max-width:360px;padding:10px 12px;border:1px solid var(--line);border-radius:9px;background:var(--card);color:var(--ink);font-size:14px}'
+'section{background:var(--card);border:1px solid var(--line);border-radius:12px;margin:0 0 18px;overflow:hidden}section>h2{margin:0;padding:14px 18px;font-size:16px;cursor:pointer;display:flex;justify-content:space-between;align-items:center;user-select:none}'
+'section>h2 .badge{font-size:12px;color:var(--muted);font-weight:500}section>h2 .dot{display:inline-block;width:9px;height:9px;border-radius:50%;margin-right:9px;vertical-align:middle}'
+'section>h2 .chev{display:inline-block;transition:transform .15s ease}section.collapsed>h2 .chev{transform:rotate(-90deg)}'
+'section.collapsed>table{display:none}'
+'.dot.intel{background:var(--intel)}.dot.uni{background:var(--uni)}.dot.arm{background:var(--arm)}.dot.oth{background:var(--muted)}.dot.leg{background:var(--leg)}'
+'table{width:100%;border-collapse:collapse;font-size:13.5px}thead th{text-align:left;padding:8px 18px;color:var(--muted);font-weight:600;font-size:11px;text-transform:uppercase;letter-spacing:.04em;border-top:1px solid var(--line);border-bottom:1px solid var(--line);cursor:pointer;user-select:none;white-space:nowrap}thead th:hover{color:var(--ink)}thead th .sortind{opacity:.9;font-size:10px}'
+'td .muted,.muted{color:var(--muted)}'
+'tbody td{padding:9px 18px;border-bottom:1px solid var(--line);vertical-align:top}tbody tr:last-child td{border-bottom:none}'
+'td.name .app{font-weight:600}td.name .applink{font-weight:600;color:inherit;text-decoration:underline;text-decoration-color:var(--muted);text-underline-offset:2px;cursor:pointer}td.name .applink:hover{color:var(--uni);text-decoration-color:var(--uni)}td.name .desc{font-weight:400;color:var(--muted);font-size:12px;margin-top:2px;max-width:380px}'
+'td.path{color:var(--muted);font-size:12px;word-break:break-all}td.path a{color:inherit;text-decoration:none;border-bottom:1px dotted var(--muted);cursor:pointer}td.path a:hover{color:var(--uni);border-bottom-color:var(--uni)}tr.empty td{color:var(--muted);font-style:italic}'
+'#toast{position:fixed;left:50%;bottom:26px;transform:translateX(-50%) translateY(20px);background:var(--ink);color:var(--bg);padding:11px 16px;border-radius:10px;font-size:13px;opacity:0;pointer-events:none;transition:opacity .18s,transform .18s;max-width:90%;box-shadow:0 6px 24px rgba(0,0,0,.25);z-index:50}#toast.show{opacity:1;transform:translateX(-50%) translateY(0)}'
+'footer{margin-top:34px;color:var(--muted);font-size:12px;text-align:center;line-height:1.7}footer a{color:inherit}.print{margin-left:8px}'
+'</style></head><body><div class="wrap">'
+'<header><h1>Rosetta Radar Report</h1><div class="sub">'+esc(hostn)+' &nbsp;·&nbsp; '+sysLine+'</div><div class="sub">Generated '+esc(stamp)+(version?' &nbsp;·&nbsp; Rosetta Radar v'+esc(version):'')+(scanMode?' &nbsp;·&nbsp; '+esc(scanMode):'')+'</div></header>'
+'<div class="tiles">'
+'<div class="tile intel" data-arch="Intel" title="Click to show only Intel-only apps"><div class="num">'+nIntel+'</div><div class="lbl">Intel-only</div></div>'
+(nLeg?'<div class="tile leg" data-arch="32-bit Intel" title="Click to show only 32-bit Intel (legacy) apps"><div class="num">'+nLeg+'</div><div class="lbl">32-bit Intel</div></div>':'')
+'<div class="tile uni" data-arch="Universal" title="Click to show only Universal apps"><div class="num">'+nUni+'</div><div class="lbl">Universal</div></div>'
+'<div class="tile arm" data-arch="Apple Silicon" title="Click to show only Apple Silicon apps"><div class="num">'+nArm+'</div><div class="lbl">Apple Silicon</div></div>'
+'<div class="tile total" data-arch="" title="Click to show all apps"><div class="num">'+total+'</div><div class="lbl">Total apps</div></div></div>'+banner
+(scanMode?'<div class="scanmode"><span class="mlabel">Scan type</span> '+esc(scanMode)+'</div>':'')
+(extNote?'<div class="note">'+esc(extNote)+'</div>':'')
+'<div class="controls"><input id="filter" type="search" placeholder="Filter by app name, description or location…"></div>';
  html+=section("Intel","intel","sec-intel",true)+(nLeg?section("32-bit Intel","leg","sec-legacy",false):"")+section("Universal","uni","sec-uni",false)+section("Apple Silicon","arm","sec-arm",false)+section("Other","oth","sec-oth",false);
  html+='<footer>Report generated by <strong>'+esc(brand||"Rosetta Radar")+'</strong>'+(contact?' &nbsp;·&nbsp; <a href="mailto:'+esc(contact)+'">'+esc(contact)+'</a>':'')
    +'<br>© 2026 Ast-Ware Arts. Free to use and share. &nbsp;·&nbsp; Some app descriptions &amp; links from the Homebrew Cask project.'
    +'<br>Underlined app names link to the developer’s page — click to check for an Apple&nbsp;Silicon or Universal update. The Source column shows the signing developer when a Developer ID signature is present; otherwise Apple, Mac App Store, or Unidentified.'
    +'<br>Click any column heading to sort by it (click again to reverse); your filter stays applied, so you can isolate a maker (e.g. type “ON1”) and sort those together. “Last Opened” comes from Spotlight and may be blank for apps never launched or not indexed.'
    +'<br>Click a location to copy its folder path, then in Finder press ⌘⇧G, paste, and press Return to open it.'
    +'<br>Architecture is determined by inspecting each app’s <em>primary</em> program file; an app may still contain separate Intel-only components, plug-ins or helpers that are not shown here. “Other” = no standard Intel or Apple-Silicon executable was found for the app’s primary program (scripts, web apps, helper components). “32-bit Intel” = a legacy 32-bit app that modern macOS can no longer run at all.'
    +(netNote?'<br>'+esc(netNote):'')
    +' <a class="print" href="#" id="printlink">Print / Save as PDF</a></footer>'
    +'<div id="toast"></div>'
    +'<script>'
    +'document.addEventListener("click",function(ev){var h=ev.target.closest?ev.target.closest("section>h2"):null;if(h&&h.parentNode&&h.parentNode.tagName==="SECTION"){h.parentNode.classList.toggle("collapsed");}},false);'
    +'var SECMAP={"Intel":"sec-intel","32-bit Intel":"sec-legacy","Universal":"sec-uni","Apple Silicon":"sec-arm","Other":"sec-oth"};window.__iso="";'
    +'function setIsolate(arch){var tiles=document.querySelectorAll(".tile");for(var i=0;i<tiles.length;i++)tiles[i].classList.remove("active");var k;'
    +'if(!arch){for(k in SECMAP){var s=document.getElementById(SECMAP[k]);if(s)s.style.display="";}var tt=document.querySelector(".tile.total");if(tt)tt.classList.add("active");window.__iso="";return;}'
    +'for(k in SECMAP){var e2=document.getElementById(SECMAP[k]);if(!e2)continue;if(k===arch){e2.style.display="";e2.classList.remove("collapsed");}else{e2.style.display="none";}}'
    +'for(var j=0;j<tiles.length;j++){if((tiles[j].getAttribute("data-arch")||"")===arch)tiles[j].classList.add("active");}window.__iso=arch;}'
    +'document.querySelectorAll(".tile").forEach(function(t){t.addEventListener("click",function(){var a=t.getAttribute("data-arch")||"";if(a!==""&&window.__iso===a){setIsolate("");}else{setIsolate(a);}});});'
    +'function toast(m){var t=document.getElementById("toast");t.textContent=m;t.className="show";clearTimeout(window._tt);window._tt=setTimeout(function(){t.className="";},3600);}'
    +'function fb(txt,cb){try{var ta=document.createElement("textarea");ta.value=txt;ta.style.position="fixed";ta.style.top="-1000px";document.body.appendChild(ta);ta.focus();ta.select();document.execCommand("copy");document.body.removeChild(ta);}catch(e){}if(cb)cb();}'
    +'function copyText(txt){function ok(){toast("Folder path copied. In Finder: press \\u2318\\u21e7G, paste, and press Return.");}try{if(navigator.clipboard&&navigator.clipboard.writeText){navigator.clipboard.writeText(txt).then(ok,function(){fb(txt,ok);});}else{fb(txt,ok);}}catch(e){fb(txt,ok);}}'
    +'document.querySelectorAll("a.loc").forEach(function(a){a.addEventListener("click",function(ev){ev.preventDefault();var p=a.getAttribute("data-path");var folder=p.substring(0,p.lastIndexOf("/"));copyText(folder||p);});});'
    +'var APPROWS=[].slice.call(document.querySelectorAll("tr.app-row"));for(var ai=0;ai<APPROWS.length;ai++){APPROWS[ai].__s=APPROWS[ai].textContent.toLowerCase();}var SECS=[].slice.call(document.querySelectorAll("section"));'
    +'var f=document.getElementById("filter");f.addEventListener("input",function(){var q=this.value.toLowerCase();for(var i=0;i<APPROWS.length;i++){APPROWS[i].style.display=(q===""||APPROWS[i].__s.indexOf(q)>-1)?"":"none";}if(q!==""){for(var s=0;s<SECS.length;s++)SECS[s].classList.remove("collapsed");}});'
    +'document.querySelectorAll("section table").forEach(function(tbl){var ths=tbl.querySelectorAll("thead th");var tb=tbl.querySelector("tbody");ths.forEach(function(th){th.addEventListener("click",function(){var idx=+th.getAttribute("data-col");var dir=th.getAttribute("data-dir")==="asc"?"desc":"asc";ths.forEach(function(o){o.removeAttribute("data-dir");var s=o.querySelector(".sortind");if(s)s.parentNode.removeChild(s);});th.setAttribute("data-dir",dir);var rows=[].slice.call(tb.querySelectorAll("tr.app-row"));function cv(row){var td=row.children[idx];var d=td.getAttribute("data-sort");return (d!==null?d:(td.textContent||"")).toLowerCase();}rows.sort(function(a,b){var va=cv(a),vb=cv(b);if(va===vb)return 0;if(va==="")return 1;if(vb==="")return -1;return (va<vb?-1:1)*(dir==="asc"?1:-1);});rows.forEach(function(r){tb.appendChild(r);});var ind=document.createElement("span");ind.className="sortind";ind.textContent=dir==="asc"?" ▲":" ▼";th.appendChild(ind);});});});'
    +'document.getElementById("printlink").addEventListener("click",function(ev){ev.preventDefault();window.print();});'
    +'</script></div></body></html>';
  if(writeHtml==="1") writeFile(htmlPath,html);
  return nIntel+"|"+total+"|"+nUni+"|"+nArm+"|"+nOther+"|"+nLeg;
}
JXA2

if [ "$SCAN_EXT" = "1" ]; then
  EXTNOTE='External and mounted volumes were included in this scan.'
else
  EXTNOTE='Only the internal drive was scanned. Re-run and choose "Include external" to also scan mounted drives.'
fi

SUMMARY="$(/usr/bin/osascript -l JavaScript "$JS2" \
  "$FINAL_TSV" "$HTML" "$BRAND" "$CONTACT" \
  "$MACOS_NAME" "$MACOS_VER" "$CHIP" "$MODEL" "$HOSTN" "$STAMP" "$EXTNOTE" "$NETNOTE" "$VERSION" "$SCANMODE" "$OUT_HTML" 2>/dev/null)"
case "$SUMMARY" in ERROR*|"") fail "Something went wrong while building the report. ($SUMMARY)";; esac

IFS='|' read -r N_INTEL N_TOTAL N_UNI N_ARM N_OTHER N_LEG <<EOF2
$SUMMARY
EOF2
: "${N_LEG:=0}"

echo "Intel-only: $N_INTEL   32-bit Intel: $N_LEG   Universal: $N_UNI   Apple Silicon: $N_ARM   Other: $N_OTHER   Total: $N_TOTAL"
[ "$OUT_HTML" = "1" ] && echo "Report: $HTML"
[ "$OUT_CSV" = "1" ] && echo "CSV: $CSV"

# Make sure the report file is actually on disk before we try to open it.
# (JXA writes atomically, but guard against any filesystem lag so we never
#  ask the browser to open a file that isn't there yet — the "no such file"
#  problem some users saw.) Only relevant when an HTML report was requested.
if [ "$OUT_HTML" = "1" ]; then
  tries=0
  while { [ ! -s "$HTML" ]; } && [ "$tries" -lt 50 ]; do
    /bin/sleep 0.1
    tries=$((tries+1))
  done
  # If the report still isn't on disk, the save failed (e.g. the output folder
  # isn't writable). Report that honestly instead of claiming success.
  [ -s "$HTML" ] || fail "The report could not be saved to \"$OUTDIR\". Please make sure that folder is writable, then try again."
fi

# Update the progress window to a static "done" page, then open the report
# itself directly with `open` (reliable across browsers, unlike a meta-refresh
# redirect to a file:// URL, which some browsers such as Arc block).
finish_prog
if [ "$OUT_HTML" = "1" ] && [ -s "$HTML" ]; then
  /usr/bin/open "$HTML" >/dev/null 2>&1
fi
( sleep 8; rm -f "$PROG" ) >/dev/null 2>&1 &

LEGLINE=""
[ "${N_LEG:-0}" -gt 0 ] 2>/dev/null && LEGLINE="
  •  32-bit Intel (legacy, won't run on modern macOS): $N_LEG"

# Describe exactly which files were saved, and whether the report was opened,
# to match the user's HTML / CSV / Both choice.
if [ "$OUT_HTML" = "1" ] && [ "$OUT_CSV" = "1" ]; then
  SAVELINE="The report and a CSV were saved to ${OUTLOC} and the report has opened in your browser."
elif [ "$OUT_HTML" = "1" ]; then
  SAVELINE="The report was saved to ${OUTLOC} and has opened in your browser."
else
  SAVELINE="The CSV was saved to ${OUTLOC}."
fi

if [ "${N_INTEL:-0}" = "0" ]; then
  MSG="Scan complete.

No Intel-only apps were found — none of the apps scanned need Rosetta 2 for their primary program.

Total apps scanned: $N_TOTAL
  •  Universal: $N_UNI
  •  Apple Silicon: $N_ARM$LEGLINE
  •  Other (scripts/components): $N_OTHER

$SAVELINE"
else
  MSG="Scan complete.

Found $N_INTEL Intel-only app(s) whose primary program relies on Rosetta 2.

Total apps scanned: $N_TOTAL
  •  Intel-only: $N_INTEL
  •  Universal: $N_UNI
  •  Apple Silicon: $N_ARM$LEGLINE
  •  Other (scripts/components): $N_OTHER

$SAVELINE"
fi

CHOICE="$(/usr/bin/osascript -e "display dialog \"$MSG\" buttons {\"Reveal Files\",\"Done\"} default button \"Done\" with title \"$APPNAME\"" 2>/dev/null)"
# Reveal whichever file was actually created (the report if there is one,
# otherwise the CSV).
if [ "$OUT_HTML" = "1" ]; then REVEAL="$HTML"; else REVEAL="$CSV"; fi
case "$CHOICE" in *"Reveal Files"*) /usr/bin/open -R "$REVEAL" >/dev/null 2>&1;; esac
exit 0
